summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/link_order/xmake.lua
diff options
context:
space:
mode:
authorArthur LAURENT <[email protected]>2024-02-06 18:31:13 +0100
committerArthur LAURENT <[email protected]>2024-02-06 18:32:06 +0100
commit8929c381e0cd70ff804e7c52bb3efc134e056e78 (patch)
tree57505d519dbb53c9ea45a8836cbcc63140bf0f28 /tests/projects/c++/modules/link_order/xmake.lua
parent3266f5dda184c4d1b1d340ec9e21cc9f299fcb84 (diff)
implement target kind moduleonly
Diffstat (limited to 'tests/projects/c++/modules/link_order/xmake.lua')
-rw-r--r--tests/projects/c++/modules/link_order/xmake.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/projects/c++/modules/link_order/xmake.lua b/tests/projects/c++/modules/link_order/xmake.lua
index 1ae6639bb..5c7b8a236 100644
--- a/tests/projects/c++/modules/link_order/xmake.lua
+++ b/tests/projects/c++/modules/link_order/xmake.lua
@@ -3,14 +3,14 @@ set_languages("c++20")
target("foo")
add_rules("c++")
- set_kind("headeronly")
- add_rules("c++.moduleonly")
+ set_kind("moduleonly")
+
add_files("src/foo.mpp")
target("bar")
add_rules("c++")
- set_kind("headeronly")
- add_rules("c++.moduleonly")
+ set_kind("moduleonly")
+
add_files("src/bar.mpp")
target("link_order_1")