aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristian Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2020-05-15 09:52:20 +0200
committerCristian Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2020-05-15 13:55:43 +0200
commited3e2af309a5c2ea81ec66b8ec6f08e5f35e6cbc (patch)
tree0a60e46f79f6f155f058b5d650192af3cbab6a25
parent8c733ba3d56b8934e6c7c46a293b93f387e334ca (diff)
cmake: one module per line on the cmake macro
To avoid conflicts when modifying the line every time we add a new module, we should write one-module-per-line. Change-Id: I7400004b7aebd6cc8c0b01c0e1abd82b597b67da Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
-rw-r--r--sources/cmake_helpers/helpers.cmake34
1 files changed, 31 insertions, 3 deletions
diff --git a/sources/cmake_helpers/helpers.cmake b/sources/cmake_helpers/helpers.cmake
index 49141de66..bfc0651ed 100644
--- a/sources/cmake_helpers/helpers.cmake
+++ b/sources/cmake_helpers/helpers.cmake
@@ -2,7 +2,15 @@ macro(collect_essential_modules)
# Collect all essential modules.
# note: the order of this list is relevant for dependencies.
# For instance: Qt5Printsupport must come before Qt5WebKitWidgets.
-set(ALL_ESSENTIAL_MODULES Core Gui Widgets PrintSupport Sql Network Test Concurrent)
+set(ALL_ESSENTIAL_MODULES
+ Core
+ Gui
+ Widgets
+ PrintSupport
+ Sql
+ Network
+ Test
+ Concurrent)
if(UNIX AND NOT APPLE)
list(APPEND ALL_ESSENTIAL_MODULES X11Extras)
endif()
@@ -16,8 +24,28 @@ endmacro()
macro(collect_optional_modules)
# Collect all optional modules.
-set(ALL_OPTIONAL_MODULES Xml XmlPatterns Help Multimedia
-MultimediaWidgets OpenGL OpenGLFunctions Positioning Location Qml Quick QuickWidgets RemoteObjects Scxml Script ScriptTools Sensors SerialPort TextToSpeech Charts Svg DataVisualization)
+set(ALL_OPTIONAL_MODULES
+ Xml
+ XmlPatterns
+ Help Multimedia
+ MultimediaWidgets
+ OpenGL
+ OpenGLFunctions
+ Positioning
+ Location
+ Qml
+ Quick
+ QuickWidgets
+ RemoteObjects
+ Scxml
+ Script
+ ScriptTools
+ Sensors
+ SerialPort
+ TextToSpeech
+ Charts
+ Svg
+ DataVisualization)
find_package(Qt5UiTools)
if(Qt5UiTools_FOUND)
list(APPEND ALL_OPTIONAL_MODULES UiTools)