diff options
| author | ruki <[email protected]> | 2017-03-30 12:28:21 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2017-03-30 12:28:21 +0800 |
| commit | ec118cc66342ce8bcefdfd9df8af83ce3a22e1e0 (patch) | |
| tree | 68a96ebb9985140c186e492b0c85fadf74f6002c /core/src/luajit/xmake.lua | |
| parent | a2a07d5d56016d98b1aa368886481268f29a2530 (diff) | |
add luajit autogen files for windows
Diffstat (limited to 'core/src/luajit/xmake.lua')
| -rw-r--r-- | core/src/luajit/xmake.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/src/luajit/xmake.lua b/core/src/luajit/xmake.lua index 250210e0e..d5590a771 100644 --- a/core/src/luajit/xmake.lua +++ b/core/src/luajit/xmake.lua @@ -19,7 +19,9 @@ target("luajit") -- add the common source files add_files("src/*.c|ljamalg.c|luajit.c") - add_files("src/autogen/$(plat)/$(arch)/*.s") + if not is_plat("windows") then + add_files("src/autogen/$(plat)/$(arch)/*.s") + end -- disable jit compiler? -- add_defines("LUAJIT_DISABLE_JIT") |
