summaryrefslogtreecommitdiff
path: root/xmake/templates/pascal/console/project/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2021-09-02 23:48:08 +0800
committerruki <[email protected]>2021-09-02 23:48:08 +0800
commit593406d1f642fd2c5b83264b0b2f60cf7fdbc8ca (patch)
tree88cb2f1e0d49e5acbc69c50beb643eedb655f37d /xmake/templates/pascal/console/project/xmake.lua
parentef248c45a806beb1347f3080cb521c4141da4682 (diff)
add pascal template
Diffstat (limited to 'xmake/templates/pascal/console/project/xmake.lua')
-rw-r--r--xmake/templates/pascal/console/project/xmake.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/xmake/templates/pascal/console/project/xmake.lua b/xmake/templates/pascal/console/project/xmake.lua
new file mode 100644
index 000000000..155005840
--- /dev/null
+++ b/xmake/templates/pascal/console/project/xmake.lua
@@ -0,0 +1,7 @@
+add_rules("mode.debug", "mode.release")
+
+target("${TARGETNAME}")
+ set_kind("binary")
+ add_files("src/*.pas")
+
+${FAQ}