summaryrefslogtreecommitdiff
path: root/xmake/templates/c++/qt.quickapp/project/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2019-09-19 00:55:37 +0800
committerruki <[email protected]>2019-09-18 23:33:46 +0800
commit336029c68e4d0fc58bb55dca3ce5fb62bfdbf41b (patch)
tree68072128ac59708b7f56615e626d87e30ed951e2 /xmake/templates/c++/qt.quickapp/project/xmake.lua
parentbb3455b845e0b776937283b3ddae4ae557eea52e (diff)
rewrite templates
Diffstat (limited to 'xmake/templates/c++/qt.quickapp/project/xmake.lua')
-rw-r--r--xmake/templates/c++/qt.quickapp/project/xmake.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmake/templates/c++/qt.quickapp/project/xmake.lua b/xmake/templates/c++/qt.quickapp/project/xmake.lua
index ed756850c..0a55677e8 100644
--- a/xmake/templates/c++/qt.quickapp/project/xmake.lua
+++ b/xmake/templates/c++/qt.quickapp/project/xmake.lua
@@ -3,16 +3,16 @@
add_rules("mode.debug", "mode.release")
-- add target
-target("[targetname]")
+target("${TARGETNAME}")
-- add rules
add_rules("qt.quickapp")
- -- add headers
+ -- add headerfiles
add_headerfiles("src/*.h")
-- add files
add_files("src/*.cpp")
add_files("src/qml.qrc")
-
+${FAQ}