diff options
| author | Arthur LAURENT <[email protected]> | 2024-07-21 18:49:22 +0200 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2024-07-21 18:49:22 +0200 |
| commit | 0314af9533bab0d687bc31a2c2cc7c97416fe814 (patch) | |
| tree | 3e1b8ee51bf75ca18797778059f77de51a75f4a9 /tests/projects/c++/modules/culling2/xmake.lua | |
| parent | e5ba7a1d14ef6f8afa2491b4dc0131169aaa4a76 (diff) | |
add a fileconfig entry to disable module culling
Diffstat (limited to 'tests/projects/c++/modules/culling2/xmake.lua')
| -rw-r--r-- | tests/projects/c++/modules/culling2/xmake.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/culling2/xmake.lua b/tests/projects/c++/modules/culling2/xmake.lua new file mode 100644 index 000000000..9a4d682bd --- /dev/null +++ b/tests/projects/c++/modules/culling2/xmake.lua @@ -0,0 +1,6 @@ +add_rules("mode.release", "mode.debug") +set_languages("c++20") + +target("culling") + set_kind("static") + add_files("src/*.mpp", {cull = false}) |
