Fix messages in QtGuiConfig

This commit is contained in:
Martchus 2017-02-20 20:04:33 +01:00
parent 2777498f6d
commit aae9fd5c85
1 changed files with 2 additions and 4 deletions

View File

@ -1,17 +1,15 @@
cmake_minimum_required(VERSION 3.3.0 FATAL_ERROR)
if(NOT BASIC_PROJECT_CONFIG_DONE)
message(FATAL_ERROR "Before including the QtConfig module, the BasicConfig module must be included.")
message(FATAL_ERROR "Before including the QtGuiConfig module, the BasicConfig module must be included.")
endif()
if(QT_CONFIGURED)
message(FATAL_ERROR "The QtConfig module can not be included when Qt usage has already been configured.")
message(FATAL_ERROR "The QtGuiConfig module can not be included when Qt usage has already been configured.")
endif()
if(TARGET_CONFIG_DONE)
message(FATAL_ERROR "Can not include QtGuiConfig module when targets are already configured.")
endif()
# this module must be included before QtConfig and AppTarget/LibraryTarget
# enable Qt Widgets GUI
if(WIDGETS_GUI)
list(APPEND META_PRIVATE_COMPILE_DEFINITIONS GUI_QTWIDGETS MODEL_UNDO_SUPPORT)