summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/link_order/xmake.lua
diff options
context:
space:
mode:
authorArthur LAURENT <[email protected]>2024-07-23 23:25:48 +0200
committerArthur LAURENT <[email protected]>2024-07-23 23:25:48 +0200
commitdf5cb9cce6cbb757c12f07677edf27b4be219f48 (patch)
tree80742d0b51636b6667f3ca5da8f6ccc4518f114a /tests/projects/c++/modules/link_order/xmake.lua
parentd84b42ace51b952a7433c2d966b5a3cc763717dc (diff)
prompt an error when multiple module with the same names are detected
Diffstat (limited to 'tests/projects/c++/modules/link_order/xmake.lua')
-rw-r--r--tests/projects/c++/modules/link_order/xmake.lua20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/projects/c++/modules/link_order/xmake.lua b/tests/projects/c++/modules/link_order/xmake.lua
deleted file mode 100644
index 4cb2af87f..000000000
--- a/tests/projects/c++/modules/link_order/xmake.lua
+++ /dev/null
@@ -1,20 +0,0 @@
-add_rules("mode.release", "mode.debug")
-set_languages("c++20")
-
-target("foo")
- set_kind("moduleonly")
- add_files("src/foo.mpp")
-
-target("bar")
- set_kind("moduleonly")
- add_files("src/bar.mpp")
-
-target("link_order_1")
- set_kind("binary")
- add_deps("foo", "bar")
- add_files("src/main.cpp")
-
-target("link_order_2")
- set_kind("binary")
- add_deps("bar", "foo")
- add_files("src/main.cpp")