diff options
author | Mole Shang <[email protected]> | 2023-08-06 13:30:44 +0800 |
---|---|---|
committer | Mole Shang <[email protected]> | 2023-08-06 13:30:44 +0800 |
commit | 5434e3e707c33b6fbd0f3d58b296c3232bba4847 (patch) | |
tree | 45cd100733f3ba18f702ecf5076d9f07840b5742 /xmake.lua | |
parent | 6fc145906eafdbd89f4558b79282a9e5d722afbc (diff) | |
download | hinata-5434e3e707c33b6fbd0f3d58b296c3232bba4847.tar.gz hinata-5434e3e707c33b6fbd0f3d58b296c3232bba4847.tar.bz2 hinata-5434e3e707c33b6fbd0f3d58b296c3232bba4847.zip |
xmake: use llvm-win32 on windows builds
Diffstat (limited to 'xmake.lua')
-rw-r--r-- | xmake.lua | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -9,6 +9,11 @@ if is_plat("linux") then set_toolchains("clang") end +if is_plat("windows") then + set_arch("x86") + set_toolchains("llvm") +end + target("hinata") set_kind("binary") add_files("src/*.c") |