From cc8ee163098a464937769641377fd98c33bdfca2 Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 4 Aug 2022 22:35:52 +0800 Subject: add more tests --- tests/projects/c++/modules/cpp_with_moduledeps/xmake.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/projects/c++/modules/cpp_with_moduledeps/xmake.lua (limited to 'tests/projects/c++/modules/cpp_with_moduledeps/xmake.lua') 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") -- cgit v1.3.1