diff options
| author | Arthur LAURENT <[email protected]> | 2024-02-05 18:22:44 +0100 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2024-02-05 18:22:44 +0100 |
| commit | 3a7d68de17f19afadc2f7eec698d54861ecd729d (patch) | |
| tree | 78fec7d5b63d564b6b03603ea56662b856253ee8 /tests/projects/c++/modules/packages/xmake.lua | |
| parent | 6739478d0bf6a4aaf0d1a1caf1c6b60532fa07f8 (diff) | |
update relevent tests to use moduleonly target rule
Diffstat (limited to 'tests/projects/c++/modules/packages/xmake.lua')
| -rw-r--r-- | tests/projects/c++/modules/packages/xmake.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/projects/c++/modules/packages/xmake.lua b/tests/projects/c++/modules/packages/xmake.lua index f772d6668..62dba119b 100644 --- a/tests/projects/c++/modules/packages/xmake.lua +++ b/tests/projects/c++/modules/packages/xmake.lua @@ -2,10 +2,10 @@ add_rules("mode.release", "mode.debug") set_languages("c++2b") add_repositories("my-repo my-repo") -add_requires("foo", "bar") +add_requires("foo", "bar", "bar2") target("packages") set_kind("binary") add_files("src/*.cpp") - add_packages("foo", "bar") + add_packages("foo", "bar", "bar2") set_policy("build.c++.modules", true) |
