summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/user_headerunit2
diff options
context:
space:
mode:
authorArthur LAURENT <[email protected]>2024-01-23 18:22:52 +0100
committerArthur LAURENT <[email protected]>2024-01-26 18:20:57 +0100
commite20c6cafdb241ad6f858556c33463da1a092abdc (patch)
tree27e4be80b8a1e9c69c1f42149bf2d31daa1d540a /tests/projects/c++/modules/user_headerunit2
parent445e43b40846b29b9abb1293b32b27b7104f54fa (diff)
improve module tests
Diffstat (limited to 'tests/projects/c++/modules/user_headerunit2')
-rw-r--r--tests/projects/c++/modules/user_headerunit2/a/xmake.lua2
-rw-r--r--tests/projects/c++/modules/user_headerunit2/b/xmake.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/projects/c++/modules/user_headerunit2/a/xmake.lua b/tests/projects/c++/modules/user_headerunit2/a/xmake.lua
index cffe161b2..3225b2814 100644
--- a/tests/projects/c++/modules/user_headerunit2/a/xmake.lua
+++ b/tests/projects/c++/modules/user_headerunit2/a/xmake.lua
@@ -1,4 +1,4 @@
target("a")
set_languages("cxxlatest")
set_kind("object")
- add_files("a.mpp")
+ add_files("a.mpp", {public = true})
diff --git a/tests/projects/c++/modules/user_headerunit2/b/xmake.lua b/tests/projects/c++/modules/user_headerunit2/b/xmake.lua
index 98cff4124..24f9c9b1f 100644
--- a/tests/projects/c++/modules/user_headerunit2/b/xmake.lua
+++ b/tests/projects/c++/modules/user_headerunit2/b/xmake.lua
@@ -2,4 +2,4 @@
add_deps("a")
set_languages("cxxlatest")
set_kind("object")
- add_files("b.mpp")
+ add_files("b.mpp", {public = true})