diff options
| author | Liu <[email protected]> | 2019-12-02 21:32:50 +0800 |
|---|---|---|
| committer | Liu <[email protected]> | 2019-12-02 21:33:15 +0800 |
| commit | 30d4183095aa5dcdb9cbe00b1b48e45ca31424fe (patch) | |
| tree | b8e47b54d84dab64cc9a65e101fcc947e52ea6cc /tests/projects/qt | |
| parent | 45b739d927c89d93d85f626ab77dee70746c1cd3 (diff) | |
clear tail white space
Diffstat (limited to 'tests/projects/qt')
| -rw-r--r-- | tests/projects/qt/console/xmake.lua | 4 | ||||
| -rw-r--r-- | tests/projects/qt/console_static/xmake.lua | 4 | ||||
| -rw-r--r-- | tests/projects/qt/quickapp/xmake.lua | 4 | ||||
| -rw-r--r-- | tests/projects/qt/quickapp_static/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 | ||||
| -rw-r--r-- | tests/projects/qt/widgetapp/xmake.lua | 6 | ||||
| -rw-r--r-- | tests/projects/qt/widgetapp_static/xmake.lua | 6 |
8 files changed, 18 insertions, 18 deletions
diff --git a/tests/projects/qt/console/xmake.lua b/tests/projects/qt/console/xmake.lua index 249f52cdd..71b7ae892 100644 --- a/tests/projects/qt/console/xmake.lua +++ b/tests/projects/qt/console/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- add target @@ -9,5 +9,5 @@ target("qt_console") add_rules("qt.console") -- add files - add_files("src/*.cpp") + add_files("src/*.cpp") diff --git a/tests/projects/qt/console_static/xmake.lua b/tests/projects/qt/console_static/xmake.lua index 249f52cdd..71b7ae892 100644 --- a/tests/projects/qt/console_static/xmake.lua +++ b/tests/projects/qt/console_static/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- add target @@ -9,5 +9,5 @@ target("qt_console") add_rules("qt.console") -- add files - add_files("src/*.cpp") + add_files("src/*.cpp") diff --git a/tests/projects/qt/quickapp/xmake.lua b/tests/projects/qt/quickapp/xmake.lua index f71402a14..747f1a1dc 100644 --- a/tests/projects/qt/quickapp/xmake.lua +++ b/tests/projects/qt/quickapp/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- add target @@ -12,7 +12,7 @@ target("qt_demo") add_headerfiles("src/*.h") -- add files - add_files("src/*.cpp") + add_files("src/*.cpp") add_files("src/qml.qrc") diff --git a/tests/projects/qt/quickapp_static/xmake.lua b/tests/projects/qt/quickapp_static/xmake.lua index 563851141..05fd78e84 100644 --- a/tests/projects/qt/quickapp_static/xmake.lua +++ b/tests/projects/qt/quickapp_static/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- includes @@ -15,7 +15,7 @@ target("qt_demo") add_headerfiles("src/*.h") -- add files - add_files("src/*.cpp") + add_files("src/*.cpp") add_files("src/qml.qrc") -- add plugin: qml.QtQuick diff --git a/tests/projects/qt/shared_library/xmake.lua b/tests/projects/qt/shared_library/xmake.lua index c0679d6b1..3e855ddad 100644 --- a/tests/projects/qt/shared_library/xmake.lua +++ b/tests/projects/qt/shared_library/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- add target @@ -12,7 +12,7 @@ target("qt_demo") add_headerfiles("src/*.h") -- add files - add_files("src/*.cpp") + add_files("src/*.cpp") -- add defines add_defines("QT_DEMO_LIBRARY") diff --git a/tests/projects/qt/static_library/xmake.lua b/tests/projects/qt/static_library/xmake.lua index b69261d45..480c55f48 100644 --- a/tests/projects/qt/static_library/xmake.lua +++ b/tests/projects/qt/static_library/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- add target @@ -12,7 +12,7 @@ target("qt_demo") add_headerfiles("src/*.h") -- add files - add_files("src/*.cpp") + add_files("src/*.cpp") -- add frameworks add_frameworks("QtGui") diff --git a/tests/projects/qt/widgetapp/xmake.lua b/tests/projects/qt/widgetapp/xmake.lua index 1bee2e4b6..2554e52d8 100644 --- a/tests/projects/qt/widgetapp/xmake.lua +++ b/tests/projects/qt/widgetapp/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- add target @@ -12,10 +12,10 @@ target("qt_demo") add_headerfiles("src/*.h") -- add files - add_files("src/*.cpp") + add_files("src/*.cpp") add_files("src/mainwindow.ui") -- add files with Q_OBJECT meta (only for qt.moc) - add_files("src/mainwindow.h") + add_files("src/mainwindow.h") diff --git a/tests/projects/qt/widgetapp_static/xmake.lua b/tests/projects/qt/widgetapp_static/xmake.lua index 12fdd0715..9adeae04c 100644 --- a/tests/projects/qt/widgetapp_static/xmake.lua +++ b/tests/projects/qt/widgetapp_static/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- includes @@ -15,11 +15,11 @@ target("qt_demo") add_headerfiles("src/*.h") -- add files - add_files("src/*.cpp") + add_files("src/*.cpp") add_files("src/mainwindow.ui") -- add files with Q_OBJECT meta (only for qt.moc) - add_files("src/mainwindow.h") + add_files("src/mainwindow.h") -- add plugin: QSvgPlugin (optional) qt_add_static_plugins("QSvgPlugin", {linkdirs = "plugins/imageformats", links = {"qsvg", "Qt5Svg"}}) |
