diff options
Diffstat (limited to 'tests/projects/other/native_module/xmake.lua')
| -rw-r--r-- | tests/projects/other/native_module/xmake.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/projects/other/native_module/xmake.lua b/tests/projects/other/native_module/xmake.lua index 3148fc0f2..3f895bb12 100644 --- a/tests/projects/other/native_module/xmake.lua +++ b/tests/projects/other/native_module/xmake.lua @@ -7,7 +7,7 @@ target("test") add_files("src/*.cpp") on_config(function (target) import("shared.foo") - import("shared.zoo") + import("shared.zoo", {always_build = true}) import("binary.bar", {always_build = true}) print("foo: 1 + 1 = %d", foo.add(1, 1)) print("foo: 1 - 1 = %d", foo.sub(1, 1)) |
