diff options
| author | ruki <[email protected]> | 2021-11-10 22:43:37 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2021-11-10 22:43:37 +0800 |
| commit | b6ed301feb4b223a8c0faa9dd979a722b6e04555 (patch) | |
| tree | 5acf1e397805852f5c05194a251c3d1066400471 /tests/projects/rust/static_library/xmake.lua | |
| parent | e99fa03712fb749bd1e689b3df63b98daa1210cc (diff) | |
improve rust tests
Diffstat (limited to 'tests/projects/rust/static_library/xmake.lua')
| -rw-r--r-- | tests/projects/rust/static_library/xmake.lua | 6 |
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") |
