diff options
| author | Arthur LAURENT <[email protected]> | 2023-01-07 17:44:36 +0100 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2023-01-07 17:44:36 +0100 |
| commit | 3755a6f67399b8e42df9f39ec7c506918dbb433a (patch) | |
| tree | 6fdf938868f75790e828c86e64319d0c558885d1 /tests/projects/c++/modules/impl_unit/xmake.lua | |
| parent | 887d301d4117d9fcb36077441fa75fb704e322fc (diff) | |
reenable old clang modules by default and fix tests
Diffstat (limited to 'tests/projects/c++/modules/impl_unit/xmake.lua')
| -rw-r--r-- | tests/projects/c++/modules/impl_unit/xmake.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/impl_unit/xmake.lua b/tests/projects/c++/modules/impl_unit/xmake.lua index abe41d20a..64db3cf8c 100644 --- a/tests/projects/c++/modules/impl_unit/xmake.lua +++ b/tests/projects/c++/modules/impl_unit/xmake.lua @@ -1,4 +1,8 @@ +add_rules("mode.release", "mode.debug") set_languages("c++20") + target("impl_unit") set_kind("binary") add_files("src/*.cpp", "src/*.mpp") + + set_values("c++.clang.modules.strict", true) -- clang std module clash with stl headers, header units and c++23 std module so we disable it when using libc++
\ No newline at end of file |
