diff options
| author | ruki <[email protected]> | 2024-04-02 21:01:59 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-04-02 21:01:59 +0800 |
| commit | 6953ca0c43ff4cb08fc9f76eabb5415a892e5167 (patch) | |
| tree | 5b3a9155c882574ac00de5106a691f27a7b0957a /tests/projects/other/native_module/modules/binary/bar/xmake.lua | |
| parent | 8c9cd4bc8ce80bbf0c2dc56424c3e629c902dbba (diff) | |
add multiple interfaces for bar
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.lua | 7 |
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") |
