summaryrefslogtreecommitdiff
path: root/tests/projects/pascal/shared/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/pascal/shared/xmake.lua')
-rw-r--r--tests/projects/pascal/shared/xmake.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/projects/pascal/shared/xmake.lua b/tests/projects/pascal/shared/xmake.lua
new file mode 100644
index 000000000..96697bcbd
--- /dev/null
+++ b/tests/projects/pascal/shared/xmake.lua
@@ -0,0 +1,10 @@
+add_rules("mode.debug", "mode.release")
+target("foo")
+ set_kind("shared")
+ add_files("src/foo.pas")
+
+target("test")
+ set_kind("binary")
+ add_deps("foo")
+ add_files("src/main.pas")
+