diff options
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -244,8 +244,15 @@ task("test") server = "zenserver", integration = "zenserver-test" } + + local arch + if is_host("windows") then + arch = "x64" + else + arch = "x86_64" + end - print(os.exec("xmake config -c -m debug -a x64")) + print(os.exec("xmake config -c -m debug -a "..arch)) print(os.exec("xmake")) local tests = {} |