diff options
| author | ruki <[email protected]> | 2024-04-03 00:44:55 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-04-03 00:44:55 +0800 |
| commit | 1cb62a5d466173ce4e8690eb320c44d5ddd6e1e2 (patch) | |
| tree | 8b573dd47167f04909784fac2b1bd58956ce9118 /tests/projects/other/native_module/modules | |
| parent | 3099b75ce297e85be6c186f6ee1bf9fe644bdb95 (diff) | |
disable native shared module for luajit
Diffstat (limited to 'tests/projects/other/native_module/modules')
| -rw-r--r-- | tests/projects/other/native_module/modules/shared/foo/xmake.lua | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/projects/other/native_module/modules/shared/foo/xmake.lua b/tests/projects/other/native_module/modules/shared/foo/xmake.lua index 7d3899f95..ad4590ffa 100644 --- a/tests/projects/other/native_module/modules/shared/foo/xmake.lua +++ b/tests/projects/other/native_module/modules/shared/foo/xmake.lua @@ -1,10 +1,6 @@ add_rules("mode.debug", "mode.release") -if xmake.luajit() then - add_requires("luajit", {alias = "lua"}) -else - add_requires("lua 5.4") -end +add_requires("lua 5.4") target("foo") add_rules("module.shared") |
