diff options
| author | Arthur LAURENT <[email protected]> | 2024-07-23 23:25:48 +0200 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2024-07-23 23:25:48 +0200 |
| commit | df5cb9cce6cbb757c12f07677edf27b4be219f48 (patch) | |
| tree | 80742d0b51636b6667f3ca5da8f6ccc4518f114a /tests/projects/c++/modules/link_order/xmake.lua | |
| parent | d84b42ace51b952a7433c2d966b5a3cc763717dc (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.lua | 20 |
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") |
