summaryrefslogtreecommitdiff
path: root/xmake/templates/c++/qt.static/project/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/templates/c++/qt.static/project/xmake.lua')
-rw-r--r--xmake/templates/c++/qt.static/project/xmake.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/xmake/templates/c++/qt.static/project/xmake.lua b/xmake/templates/c++/qt.static/project/xmake.lua
index e69a47e61..2bf4505c5 100644
--- a/xmake/templates/c++/qt.static/project/xmake.lua
+++ b/xmake/templates/c++/qt.static/project/xmake.lua
@@ -3,12 +3,12 @@
add_rules("mode.debug", "mode.release")
-- add target
-target("[targetname]")
+target("${TARGETNAME}")
-- add rules
add_rules("qt.static")
- -- add headers
+ -- add headerfiles
add_headerfiles("src/*.h")
-- add files
@@ -16,3 +16,5 @@ target("[targetname]")
-- add frameworks
add_frameworks("QtGui")
+
+${FAQ}