diff options
| author | ruki <[email protected]> | 2018-04-17 22:46:43 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2018-04-17 10:40:23 +0800 |
| commit | e9df357185b4ed02e230a11bfe76ad7dcf3a5376 (patch) | |
| tree | 8f303e98154a684a8d9df11deb72cdf8d9554cb2 /tests/projects | |
| parent | acf8310347d557a731ded14acd283a073129bf29 (diff) | |
compile qrc file for qt
Diffstat (limited to 'tests/projects')
| -rw-r--r-- | tests/projects/console_c/xmake.lua | 2 | ||||
| -rw-r--r-- | tests/projects/qt_console/xmake.lua | 4 | ||||
| -rw-r--r-- | tests/projects/qt_quickapp/xmake.lua | 4 | ||||
| -rw-r--r-- | tests/projects/qt_shared_library/xmake.lua | 4 | ||||
| -rw-r--r-- | tests/projects/qt_static_library/xmake.lua | 4 |
5 files changed, 9 insertions, 9 deletions
diff --git a/tests/projects/console_c/xmake.lua b/tests/projects/console_c/xmake.lua index 4faa18a0f..a9106daff 100644 --- a/tests/projects/console_c/xmake.lua +++ b/tests/projects/console_c/xmake.lua @@ -1,6 +1,6 @@ -- add modes: debug and release -add_rules("mode:debug", "mode:release") +add_rules("mode.debug", "mode.release") -- add target target("console_c") diff --git a/tests/projects/qt_console/xmake.lua b/tests/projects/qt_console/xmake.lua index 0ab7a6b23..249f52cdd 100644 --- a/tests/projects/qt_console/xmake.lua +++ b/tests/projects/qt_console/xmake.lua @@ -1,12 +1,12 @@ -- add modes: debug and release -add_rules("mode:debug", "mode:release") +add_rules("mode.debug", "mode.release") -- add target target("qt_console") -- add rules - add_rules("qt:console") + add_rules("qt.console") -- add files add_files("src/*.cpp") diff --git a/tests/projects/qt_quickapp/xmake.lua b/tests/projects/qt_quickapp/xmake.lua index 87a1d80f8..a2f261d24 100644 --- a/tests/projects/qt_quickapp/xmake.lua +++ b/tests/projects/qt_quickapp/xmake.lua @@ -1,12 +1,12 @@ -- add modes: debug and release -add_rules("mode:debug", "mode:release") +add_rules("mode.debug", "mode.release") -- add target target("qt_demo") -- add rules - add_rules("qt:quickapp") + add_rules("qt.quickapp") -- add headers add_headers("src/*.h") diff --git a/tests/projects/qt_shared_library/xmake.lua b/tests/projects/qt_shared_library/xmake.lua index e3d3c0e61..803065b72 100644 --- a/tests/projects/qt_shared_library/xmake.lua +++ b/tests/projects/qt_shared_library/xmake.lua @@ -1,12 +1,12 @@ -- add modes: debug and release -add_rules("mode:debug", "mode:release") +add_rules("mode.debug", "mode.release") -- add target target("qt_demo") -- add rules - add_rules("qt:shared") + add_rules("qt.shared") -- add headers add_headers("src/*.h") diff --git a/tests/projects/qt_static_library/xmake.lua b/tests/projects/qt_static_library/xmake.lua index 00fcd0b31..ce755850a 100644 --- a/tests/projects/qt_static_library/xmake.lua +++ b/tests/projects/qt_static_library/xmake.lua @@ -1,12 +1,12 @@ -- add modes: debug and release -add_rules("mode:debug", "mode:release") +add_rules("mode.debug", "mode.release") -- add target target("qt_demo") -- add rules - add_rules("qt:static") + add_rules("qt.static") -- add headers add_headers("src/*.h") |
