summaryrefslogtreecommitdiff
path: root/tests/projects/qt/console_static/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2019-02-24 00:12:18 +0800
committerruki <[email protected]>2019-02-24 00:12:18 +0800
commit28a830e6baec04094a2f4933421a216c87025272 (patch)
tree0fd98b241f7061138aa84142a6995bcf2d0f1b3a /tests/projects/qt/console_static/xmake.lua
parent85a7d6d728348b22254abb1a1bf4e5b1402cba2f (diff)
add static qt projects
Diffstat (limited to 'tests/projects/qt/console_static/xmake.lua')
-rw-r--r--tests/projects/qt/console_static/xmake.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/projects/qt/console_static/xmake.lua b/tests/projects/qt/console_static/xmake.lua
new file mode 100644
index 000000000..249f52cdd
--- /dev/null
+++ b/tests/projects/qt/console_static/xmake.lua
@@ -0,0 +1,13 @@
+
+-- add modes: debug and release
+add_rules("mode.debug", "mode.release")
+
+-- add target
+target("qt_console")
+
+ -- add rules
+ add_rules("qt.console")
+
+ -- add files
+ add_files("src/*.cpp")
+