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