summaryrefslogtreecommitdiff
path: root/tests/projects/nim/nimble_package/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/nim/nimble_package/xmake.lua')
-rw-r--r--tests/projects/nim/nimble_package/xmake.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/projects/nim/nimble_package/xmake.lua b/tests/projects/nim/nimble_package/xmake.lua
new file mode 100644
index 000000000..45e6f3132
--- /dev/null
+++ b/tests/projects/nim/nimble_package/xmake.lua
@@ -0,0 +1,8 @@
+add_rules("mode.debug", "mode.release")
+
+add_requires("nimble::zip >0.3")
+
+target("test")
+ set_kind("binary")
+ add_files("src/main.nim")
+ add_packages("nimble::zip")