summaryrefslogtreecommitdiff
path: root/xmake/templates/zig/console/project/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/templates/zig/console/project/xmake.lua')
-rw-r--r--xmake/templates/zig/console/project/xmake.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/xmake/templates/zig/console/project/xmake.lua b/xmake/templates/zig/console/project/xmake.lua
new file mode 100644
index 000000000..69a4b4477
--- /dev/null
+++ b/xmake/templates/zig/console/project/xmake.lua
@@ -0,0 +1,7 @@
+add_rules("mode.debug", "mode.release")
+
+target("${TARGETNAME}")
+ set_kind("binary")
+ add_files("src/*.zig")
+
+${FAQ}