diff options
Diffstat (limited to 'tests/projects/qt_static_library/xmake.lua')
| -rw-r--r-- | tests/projects/qt_static_library/xmake.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/projects/qt_static_library/xmake.lua b/tests/projects/qt_static_library/xmake.lua new file mode 100644 index 000000000..e3d27c18a --- /dev/null +++ b/tests/projects/qt_static_library/xmake.lua @@ -0,0 +1,13 @@ + +-- add modes: debug and release +add_rules("mode:debug", "mode:release") + +-- add target +target("qt_demo") + + -- add rules + add_rules("qt:static") + + -- add files + add_files("src/*.cpp") + |
