diff options
| author | ruki <[email protected]> | 2024-07-22 09:47:57 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-07-22 09:47:57 +0800 |
| commit | e6ba4e15203cf1825efa7fc1f457eff271386ac9 (patch) | |
| tree | dc5e758ca4ea54ddc99e3702257b8b7cbf456f8e /tests/projects/c++/modules/culling/xmake.lua | |
| parent | 4c1f120cacbbc3043e7b9cbf71a34d2186064958 (diff) | |
| parent | 7db73f18851c801d8eee42d5191de89e1b3f13af (diff) | |
Merge pull request #5369 from Arthapz/add-culling-policy
add a policy to disable module culling
Diffstat (limited to 'tests/projects/c++/modules/culling/xmake.lua')
| -rw-r--r-- | tests/projects/c++/modules/culling/xmake.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/culling/xmake.lua b/tests/projects/c++/modules/culling/xmake.lua new file mode 100644 index 000000000..33d3934b9 --- /dev/null +++ b/tests/projects/c++/modules/culling/xmake.lua @@ -0,0 +1,7 @@ +add_rules("mode.release", "mode.debug") +set_languages("c++20") + +target("culling") + set_kind("static") + add_files("src/*.mpp") + set_policy("build.c++.modules.culling", false) |
