summaryrefslogtreecommitdiff
path: root/tests/projects/other/parallel_build/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/other/parallel_build/xmake.lua')
-rw-r--r--tests/projects/other/parallel_build/xmake.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/projects/other/parallel_build/xmake.lua b/tests/projects/other/parallel_build/xmake.lua
new file mode 100644
index 000000000..e84b8a6e5
--- /dev/null
+++ b/tests/projects/other/parallel_build/xmake.lua
@@ -0,0 +1,13 @@
+-- These targets should compiled and linked concurrently.
+add_rules("mode.release", "mode.debug", "mode.releasedbg")
+set_policy("build.ccache", false)
+
+target("first")
+ set_kind("binary")
+ add_files("1.cpp")
+ set_languages("clatest", "cxx20")
+
+target("second")
+ set_kind("binary")
+ add_files("2.cpp")
+ set_languages("clatest", "cxx20")