summaryrefslogtreecommitdiff
path: root/tests/projects/other/native_module/modules/binary/bar/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/other/native_module/modules/binary/bar/xmake.lua')
-rw-r--r--tests/projects/other/native_module/modules/binary/bar/xmake.lua7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/projects/other/native_module/modules/binary/bar/xmake.lua b/tests/projects/other/native_module/modules/binary/bar/xmake.lua
index 8f4526071..add3c6e97 100644
--- a/tests/projects/other/native_module/modules/binary/bar/xmake.lua
+++ b/tests/projects/other/native_module/modules/binary/bar/xmake.lua
@@ -1,7 +1,10 @@
add_rules("mode.debug", "mode.release")
-target("bar")
+target("add")
add_rules("module.binary")
- add_files("src/*.cpp")
+ add_files("src/add.cpp")
+target("sub")
+ add_rules("module.binary")
+ add_files("src/sub.cpp")