From 5f5daf64c504e1103a355f45bf925a5149b03e24 Mon Sep 17 00:00:00 2001 From: ruki Date: Sun, 9 Aug 2026 18:06:16 +0800 Subject: move templates dir --- xmake/templates/objc++/console/xmake.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 xmake/templates/objc++/console/xmake.lua (limited to 'xmake/templates/objc++/console/xmake.lua') diff --git a/xmake/templates/objc++/console/xmake.lua b/xmake/templates/objc++/console/xmake.lua new file mode 100644 index 000000000..99749f901 --- /dev/null +++ b/xmake/templates/objc++/console/xmake.lua @@ -0,0 +1,13 @@ +-- add modes: debug and release +add_rules("mode.debug", "mode.release") + +-- add target +target("${TARGET_NAME}") + + -- set kind + set_kind("binary") + + -- add files + add_files("src/*.mm") + +${FAQ} -- cgit v1.3.1