diff options
| author | ruki <[email protected]> | 2024-04-03 23:42:56 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-04-03 23:42:56 +0800 |
| commit | d08d95ac8fc9e1f316ff180aaedd61e21c384e24 (patch) | |
| tree | ebcfb72223ceb58280f51cbc327f22d62b2ce749 /tests/projects/other/native_module/xmake.lua | |
| parent | 817353b79fc9145c18992facd920ec8f9497000b (diff) | |
improve xmi.h
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)) |
