summaryrefslogtreecommitdiff
path: root/tests/projects/rust/static_library/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2021-11-10 22:43:37 +0800
committerruki <[email protected]>2021-11-10 22:43:37 +0800
commitb6ed301feb4b223a8c0faa9dd979a722b6e04555 (patch)
tree5acf1e397805852f5c05194a251c3d1066400471 /tests/projects/rust/static_library/xmake.lua
parente99fa03712fb749bd1e689b3df63b98daa1210cc (diff)
improve rust tests
Diffstat (limited to 'tests/projects/rust/static_library/xmake.lua')
-rw-r--r--tests/projects/rust/static_library/xmake.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/projects/rust/static_library/xmake.lua b/tests/projects/rust/static_library/xmake.lua
index fa38d17e5..c50e50874 100644
--- a/tests/projects/rust/static_library/xmake.lua
+++ b/tests/projects/rust/static_library/xmake.lua
@@ -1,12 +1,12 @@
add_rules("mode.debug", "mode.release")
-target("interfaces")
+target("foo")
set_kind("static")
- add_files("src/interfaces.rs")
+ add_files("src/foo.rs")
target("test")
set_kind("binary")
- add_deps("interfaces")
+ add_deps("foo")
add_files("src/main.rs")