diff options
Diffstat (limited to 'tests/projects/c++/modules/cpp_with_moduledeps/xmake.lua')
| -rw-r--r-- | tests/projects/c++/modules/cpp_with_moduledeps/xmake.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/cpp_with_moduledeps/xmake.lua b/tests/projects/c++/modules/cpp_with_moduledeps/xmake.lua new file mode 100644 index 000000000..5c7a8a6f7 --- /dev/null +++ b/tests/projects/c++/modules/cpp_with_moduledeps/xmake.lua @@ -0,0 +1,10 @@ +set_languages("c++20") + +target("mod") + set_kind("static") + add_files("src/mod.mpp", "src/mod.cpp") + +target("main") + set_kind("binary") + add_deps("mod") + add_files("src/main.cpp") |
