qtutilities/cmake/modules/QtGuiConfig.cmake

87 lines
3.1 KiB
CMake
Raw Normal View History

2016-10-08 19:07:28 +02:00
cmake_minimum_required(VERSION 3.3.0 FATAL_ERROR)
2019-02-06 17:32:10 +01:00
if (NOT BASIC_PROJECT_CONFIG_DONE)
2017-02-20 20:04:33 +01:00
message(FATAL_ERROR "Before including the QtGuiConfig module, the BasicConfig module must be included.")
2019-02-06 17:32:10 +01:00
endif ()
if (QT_CONFIGURED)
2017-02-20 20:04:33 +01:00
message(FATAL_ERROR "The QtGuiConfig module can not be included when Qt usage has already been configured.")
2019-02-06 17:32:10 +01:00
endif ()
if (TARGET_CONFIG_DONE)
2017-02-11 02:31:43 +01:00
message(FATAL_ERROR "Can not include QtGuiConfig module when targets are already configured.")
2019-02-06 17:32:10 +01:00
endif ()
2017-02-11 02:31:43 +01:00
if (NOT WIDGETS_GUI AND NOT QUICK_GUI)
message(STATUS "GUI is completely disabled.")
return()
2019-05-04 20:59:19 +02:00
endif ()
list(APPEND ADDITIONAL_QT_MODULES Gui)
# enable Qt Widgets GUI
2019-02-06 17:32:10 +01:00
if (WIDGETS_GUI)
list(APPEND META_PRIVATE_COMPILE_DEFINITIONS GUI_QTWIDGETS)
list(APPEND META_PUBLIC_COMPILE_DEFINITIONS ${META_PROJECT_VARNAME_UPPER}_GUI_QTWIDGETS)
2019-11-30 17:58:56 +01:00
list(APPEND WIDGETS_FILES ${WIDGETS_HEADER_FILES} ${WIDGETS_SRC_FILES} ${WIDGETS_RES_FILES} ${WIDGETS_UI_FILES})
list(APPEND ADDITIONAL_HEADER_FILES ${WIDGETS_HEADER_FILES})
2019-02-06 17:32:10 +01:00
if (WIDGETS_FILES)
list(APPEND ADDITIONAL_QT_MODULES Widgets)
message(STATUS "Building with Qt Widgets GUI.")
2019-02-06 17:32:10 +01:00
else ()
message(STATUS "Qt Widgets GUI is not available.")
2019-02-06 17:32:10 +01:00
endif ()
else ()
2016-07-10 00:22:20 +02:00
message(STATUS "Building WITHOUT Qt Widgets GUI.")
2019-02-06 17:32:10 +01:00
endif ()
# enable Qt Quick GUI
2019-02-06 17:32:10 +01:00
if (QUICK_GUI)
2016-11-08 19:57:57 +01:00
list(APPEND META_PRIVATE_COMPILE_DEFINITIONS GUI_QTQUICK)
list(APPEND META_PUBLIC_COMPILE_DEFINITIONS ${META_PROJECT_VARNAME_UPPER}_GUI_QTQUICK)
2019-11-30 17:58:56 +01:00
list(APPEND QML_FILES ${QML_HEADER_FILES} ${QML_SRC_FILES} ${QML_RES_FILES})
list(APPEND ADDITIONAL_HEADER_FILES ${QML_HEADER_FILES})
2019-02-06 17:32:10 +01:00
if (QML_FILES)
list(APPEND ADDITIONAL_QT_MODULES Qml Quick)
list(APPEND ADDITIONAL_QT_REPOS "declarative")
message(STATUS "Building with Qt Quick GUI.")
# enable QML debugging
2019-02-06 17:32:10 +01:00
if (CMAKE_BUILD_TYPE STREQUAL "Debug")
list(APPEND META_PRIVATE_COMPILE_DEFINITIONS QT_QML_DEBUG)
2019-02-06 17:32:10 +01:00
endif ()
# enable Qt Quick Controls 2
2019-02-06 17:32:10 +01:00
if (META_USE_QQC2)
list(APPEND ADDITIONAL_QT_MODULES QuickControls2)
2019-02-06 17:32:10 +01:00
endif ()
else ()
message(STATUS "Qt Quick GUI is not available.")
2019-02-06 17:32:10 +01:00
endif ()
else ()
2016-07-10 00:22:20 +02:00
message(STATUS "Building WITHOUT Qt Quick GUI.")
2019-02-06 17:32:10 +01:00
endif ()
# set platform-specific GUI-type
if (WIN32)
# set "GUI-type" to WIN32 to hide console under Windows
set(GUI_TYPE WIN32)
elseif (APPLE)
# make the GUI application a "bundle" under MacOSX
set(GUI_TYPE MACOSX_BUNDLE)
endif ()
# add source files required by both GUI variants
list(APPEND SRC_FILES ${GUI_SRC_FILES})
list(APPEND ADDITIONAL_HEADER_FILES ${GUI_HEADER_FILES})
2016-08-19 16:16:10 +02:00
# add option for enabling/disabling static Qt plugins
option(SVG_SUPPORT "whether to link against the SVG image format plugin (only relevant when using static Qt)" ON)
option(SVG_ICON_SUPPORT "whether to link against the SVG icon engine (only relevant when using static Qt)" ON)
2019-06-01 12:15:48 +02:00
set(IMAGE_FORMAT_SUPPORT
"Gif;ICO;Jpeg"
CACHE STRING "specifies the image format plugins to link against (only relevant when using static Qt)")
# always enable the Svg module under Android
if (ANDROID)
list(APPEND ADDITIONAL_QT_MODULES Svg)
2019-02-06 17:32:10 +01:00
endif ()