mirror of
https://github.com/Retropex/dolphin.git
synced 2025-05-19 06:40:43 +02:00
256 lines
11 KiB
CMake
256 lines
11 KiB
CMake
if (CMAKE_VERSION VERSION_LESS 3.1.0)
|
|
message(FATAL_ERROR "Qt 5 Widgets module requires at least CMake version 3.1.0")
|
|
endif()
|
|
|
|
get_filename_component(_qt5Widgets_install_prefix "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE)
|
|
|
|
# For backwards compatibility only. Use Qt5Widgets_VERSION instead.
|
|
set(Qt5Widgets_VERSION_STRING 5.15.0)
|
|
|
|
set(Qt5Widgets_LIBRARIES Qt5::Widgets)
|
|
|
|
macro(_qt5_Widgets_check_file_exists file)
|
|
if(NOT EXISTS "${file}" )
|
|
message(FATAL_ERROR "The imported target \"Qt5::Widgets\" references the file
|
|
\"${file}\"
|
|
but this file does not exist. Possible reasons include:
|
|
* The file was deleted, renamed, or moved to another location.
|
|
* An install or uninstall procedure did not complete successfully.
|
|
* The installation package was faulty and contained
|
|
\"${CMAKE_CURRENT_LIST_FILE}\"
|
|
but not all the files it references.
|
|
")
|
|
endif()
|
|
endmacro()
|
|
|
|
|
|
macro(_populate_Widgets_target_properties Configuration LIB_LOCATION IMPLIB_LOCATION
|
|
IsDebugAndRelease)
|
|
set_property(TARGET Qt5::Widgets APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration})
|
|
|
|
set(imported_location "${_qt5Widgets_install_prefix}/bin/${LIB_LOCATION}")
|
|
_qt5_Widgets_check_file_exists(${imported_location})
|
|
set(_deps
|
|
${_Qt5Widgets_LIB_DEPENDENCIES}
|
|
)
|
|
set(_static_deps
|
|
)
|
|
|
|
set_target_properties(Qt5::Widgets PROPERTIES
|
|
"IMPORTED_LOCATION_${Configuration}" ${imported_location}
|
|
# For backward compatibility with CMake < 2.8.12
|
|
"IMPORTED_LINK_INTERFACE_LIBRARIES_${Configuration}" "${_deps};${_static_deps}"
|
|
)
|
|
set_property(TARGET Qt5::Widgets APPEND PROPERTY INTERFACE_LINK_LIBRARIES
|
|
"${_deps}"
|
|
)
|
|
|
|
|
|
set(imported_implib "${_qt5Widgets_install_prefix}/lib/${IMPLIB_LOCATION}")
|
|
_qt5_Widgets_check_file_exists(${imported_implib})
|
|
if(NOT "${IMPLIB_LOCATION}" STREQUAL "")
|
|
set_target_properties(Qt5::Widgets PROPERTIES
|
|
"IMPORTED_IMPLIB_${Configuration}" ${imported_implib}
|
|
)
|
|
endif()
|
|
endmacro()
|
|
|
|
if (NOT TARGET Qt5::Widgets)
|
|
|
|
set(_Qt5Widgets_OWN_INCLUDE_DIRS "${_qt5Widgets_install_prefix}/include/" "${_qt5Widgets_install_prefix}/include/QtWidgets")
|
|
set(Qt5Widgets_PRIVATE_INCLUDE_DIRS
|
|
"${_qt5Widgets_install_prefix}/include/QtWidgets/5.15.0"
|
|
"${_qt5Widgets_install_prefix}/include/QtWidgets/5.15.0/QtWidgets"
|
|
)
|
|
include("${CMAKE_CURRENT_LIST_DIR}/ExtraSourceIncludes.cmake" OPTIONAL)
|
|
|
|
foreach(_dir ${_Qt5Widgets_OWN_INCLUDE_DIRS})
|
|
_qt5_Widgets_check_file_exists(${_dir})
|
|
endforeach()
|
|
|
|
# Only check existence of private includes if the Private component is
|
|
# specified.
|
|
list(FIND Qt5Widgets_FIND_COMPONENTS Private _check_private)
|
|
if (NOT _check_private STREQUAL -1)
|
|
foreach(_dir ${Qt5Widgets_PRIVATE_INCLUDE_DIRS})
|
|
_qt5_Widgets_check_file_exists(${_dir})
|
|
endforeach()
|
|
endif()
|
|
|
|
set(Qt5Widgets_INCLUDE_DIRS ${_Qt5Widgets_OWN_INCLUDE_DIRS})
|
|
|
|
set(Qt5Widgets_DEFINITIONS -DQT_WIDGETS_LIB)
|
|
set(Qt5Widgets_COMPILE_DEFINITIONS QT_WIDGETS_LIB)
|
|
set(_Qt5Widgets_MODULE_DEPENDENCIES "Gui;Core")
|
|
|
|
|
|
set(Qt5Widgets_OWN_PRIVATE_INCLUDE_DIRS ${Qt5Widgets_PRIVATE_INCLUDE_DIRS})
|
|
|
|
set(_Qt5Widgets_FIND_DEPENDENCIES_REQUIRED)
|
|
if (Qt5Widgets_FIND_REQUIRED)
|
|
set(_Qt5Widgets_FIND_DEPENDENCIES_REQUIRED REQUIRED)
|
|
endif()
|
|
set(_Qt5Widgets_FIND_DEPENDENCIES_QUIET)
|
|
if (Qt5Widgets_FIND_QUIETLY)
|
|
set(_Qt5Widgets_DEPENDENCIES_FIND_QUIET QUIET)
|
|
endif()
|
|
set(_Qt5Widgets_FIND_VERSION_EXACT)
|
|
if (Qt5Widgets_FIND_VERSION_EXACT)
|
|
set(_Qt5Widgets_FIND_VERSION_EXACT EXACT)
|
|
endif()
|
|
|
|
set(Qt5Widgets_EXECUTABLE_COMPILE_FLAGS "")
|
|
|
|
foreach(_module_dep ${_Qt5Widgets_MODULE_DEPENDENCIES})
|
|
if (NOT Qt5${_module_dep}_FOUND)
|
|
find_package(Qt5${_module_dep}
|
|
5.15.0 ${_Qt5Widgets_FIND_VERSION_EXACT}
|
|
${_Qt5Widgets_DEPENDENCIES_FIND_QUIET}
|
|
${_Qt5Widgets_FIND_DEPENDENCIES_REQUIRED}
|
|
PATHS "${CMAKE_CURRENT_LIST_DIR}/.." NO_DEFAULT_PATH
|
|
)
|
|
endif()
|
|
|
|
if (NOT Qt5${_module_dep}_FOUND)
|
|
set(Qt5Widgets_FOUND False)
|
|
return()
|
|
endif()
|
|
|
|
list(APPEND Qt5Widgets_INCLUDE_DIRS "${Qt5${_module_dep}_INCLUDE_DIRS}")
|
|
list(APPEND Qt5Widgets_PRIVATE_INCLUDE_DIRS "${Qt5${_module_dep}_PRIVATE_INCLUDE_DIRS}")
|
|
list(APPEND Qt5Widgets_DEFINITIONS ${Qt5${_module_dep}_DEFINITIONS})
|
|
list(APPEND Qt5Widgets_COMPILE_DEFINITIONS ${Qt5${_module_dep}_COMPILE_DEFINITIONS})
|
|
list(APPEND Qt5Widgets_EXECUTABLE_COMPILE_FLAGS ${Qt5${_module_dep}_EXECUTABLE_COMPILE_FLAGS})
|
|
endforeach()
|
|
list(REMOVE_DUPLICATES Qt5Widgets_INCLUDE_DIRS)
|
|
list(REMOVE_DUPLICATES Qt5Widgets_PRIVATE_INCLUDE_DIRS)
|
|
list(REMOVE_DUPLICATES Qt5Widgets_DEFINITIONS)
|
|
list(REMOVE_DUPLICATES Qt5Widgets_COMPILE_DEFINITIONS)
|
|
list(REMOVE_DUPLICATES Qt5Widgets_EXECUTABLE_COMPILE_FLAGS)
|
|
|
|
# It can happen that the same FooConfig.cmake file is included when calling find_package()
|
|
# on some Qt component. An example of that is when using a Qt static build with auto inclusion
|
|
# of plugins:
|
|
#
|
|
# Qt5WidgetsConfig.cmake -> Qt5GuiConfig.cmake -> Qt5Gui_QSvgIconPlugin.cmake ->
|
|
# Qt5SvgConfig.cmake -> Qt5WidgetsConfig.cmake ->
|
|
# finish processing of second Qt5WidgetsConfig.cmake ->
|
|
# return to first Qt5WidgetsConfig.cmake ->
|
|
# add_library cannot create imported target Qt5::Widgets.
|
|
#
|
|
# Make sure to return early in the original Config inclusion, because the target has already
|
|
# been defined as part of the second inclusion.
|
|
if(TARGET Qt5::Widgets)
|
|
return()
|
|
endif()
|
|
|
|
set(_Qt5Widgets_LIB_DEPENDENCIES "Qt5::Gui;Qt5::Core")
|
|
|
|
|
|
add_library(Qt5::Widgets SHARED IMPORTED)
|
|
|
|
# Add a versionless target, for compatibility with Qt6.
|
|
if(NOT "${QT_NO_CREATE_VERSIONLESS_TARGETS}" AND NOT TARGET Qt::Widgets)
|
|
add_library(Qt::Widgets INTERFACE IMPORTED)
|
|
set_target_properties(Qt::Widgets PROPERTIES
|
|
INTERFACE_LINK_LIBRARIES "Qt5::Widgets"
|
|
)
|
|
endif()
|
|
|
|
|
|
set_property(TARGET Qt5::Widgets PROPERTY
|
|
INTERFACE_INCLUDE_DIRECTORIES ${_Qt5Widgets_OWN_INCLUDE_DIRS})
|
|
set_property(TARGET Qt5::Widgets PROPERTY
|
|
INTERFACE_COMPILE_DEFINITIONS QT_WIDGETS_LIB)
|
|
|
|
set_property(TARGET Qt5::Widgets PROPERTY INTERFACE_QT_ENABLED_FEATURES abstractbutton;abstractslider;groupbox;buttongroup;label;pushbutton;menu;lineedit;spinbox;slider;scrollbar;scrollarea;itemviews;tableview;toolbutton;calendarwidget;checkbox;dialog;dialogbuttonbox;colordialog;listview;columnview;combobox;commandlinkbutton;completer;contextmenu;datawidgetmapper;datetimeedit;dial;filesystemmodel;dirmodel;resizehandler;mainwindow;dockwidget;textedit;errormessage;splitter;stackedwidget;treeview;filedialog;fontcombobox;fontdialog;formlayout;fscompleter;graphicsview;graphicseffect;inputdialog;keysequenceedit;lcdnumber;listwidget;mdiarea;menubar;messagebox;progressbar;progressdialog;radiobutton;rubberband;scroller;sizegrip;splashscreen;statusbar;statustip;style-stylesheet;syntaxhighlighter;tabbar;tablewidget;tabwidget;textbrowser;toolbar;toolbox;tooltip;treewidget;undocommand;undostack;undogroup;undoview;wizard)
|
|
set_property(TARGET Qt5::Widgets PROPERTY INTERFACE_QT_DISABLED_FEATURES )
|
|
|
|
# Qt 6 forward compatible properties.
|
|
set_property(TARGET Qt5::Widgets
|
|
PROPERTY QT_ENABLED_PUBLIC_FEATURES
|
|
abstractbutton;abstractslider;groupbox;buttongroup;label;pushbutton;menu;lineedit;spinbox;slider;scrollbar;scrollarea;itemviews;tableview;toolbutton;calendarwidget;checkbox;dialog;dialogbuttonbox;colordialog;listview;columnview;combobox;commandlinkbutton;completer;contextmenu;datawidgetmapper;datetimeedit;dial;filesystemmodel;dirmodel;resizehandler;mainwindow;dockwidget;textedit;errormessage;splitter;stackedwidget;treeview;filedialog;fontcombobox;fontdialog;formlayout;fscompleter;graphicsview;graphicseffect;inputdialog;keysequenceedit;lcdnumber;listwidget;mdiarea;menubar;messagebox;progressbar;progressdialog;radiobutton;rubberband;scroller;sizegrip;splashscreen;statusbar;statustip;style-stylesheet;syntaxhighlighter;tabbar;tablewidget;tabwidget;textbrowser;toolbar;toolbox;tooltip;treewidget;undocommand;undostack;undogroup;undoview;wizard)
|
|
set_property(TARGET Qt5::Widgets
|
|
PROPERTY QT_DISABLED_PUBLIC_FEATURES
|
|
)
|
|
set_property(TARGET Qt5::Widgets
|
|
PROPERTY QT_ENABLED_PRIVATE_FEATURES
|
|
widgettextcontrol;effects;style-fusion;style-windows;style-windowsvista)
|
|
set_property(TARGET Qt5::Widgets
|
|
PROPERTY QT_DISABLED_PRIVATE_FEATURES
|
|
gtk3;style-android;style-mac)
|
|
|
|
set_property(TARGET Qt5::Widgets PROPERTY INTERFACE_QT_PLUGIN_TYPES "styles")
|
|
|
|
set(_Qt5Widgets_PRIVATE_DIRS_EXIST TRUE)
|
|
foreach (_Qt5Widgets_PRIVATE_DIR ${Qt5Widgets_OWN_PRIVATE_INCLUDE_DIRS})
|
|
if (NOT EXISTS ${_Qt5Widgets_PRIVATE_DIR})
|
|
set(_Qt5Widgets_PRIVATE_DIRS_EXIST FALSE)
|
|
endif()
|
|
endforeach()
|
|
|
|
if (_Qt5Widgets_PRIVATE_DIRS_EXIST)
|
|
add_library(Qt5::WidgetsPrivate INTERFACE IMPORTED)
|
|
set_property(TARGET Qt5::WidgetsPrivate PROPERTY
|
|
INTERFACE_INCLUDE_DIRECTORIES ${Qt5Widgets_OWN_PRIVATE_INCLUDE_DIRS}
|
|
)
|
|
set(_Qt5Widgets_PRIVATEDEPS)
|
|
foreach(dep ${_Qt5Widgets_LIB_DEPENDENCIES})
|
|
if (TARGET ${dep}Private)
|
|
list(APPEND _Qt5Widgets_PRIVATEDEPS ${dep}Private)
|
|
endif()
|
|
endforeach()
|
|
set_property(TARGET Qt5::WidgetsPrivate PROPERTY
|
|
INTERFACE_LINK_LIBRARIES Qt5::Widgets ${_Qt5Widgets_PRIVATEDEPS}
|
|
)
|
|
|
|
# Add a versionless target, for compatibility with Qt6.
|
|
if(NOT "${QT_NO_CREATE_VERSIONLESS_TARGETS}" AND NOT TARGET Qt::WidgetsPrivate)
|
|
add_library(Qt::WidgetsPrivate INTERFACE IMPORTED)
|
|
set_target_properties(Qt::WidgetsPrivate PROPERTIES
|
|
INTERFACE_LINK_LIBRARIES "Qt5::WidgetsPrivate"
|
|
)
|
|
endif()
|
|
endif()
|
|
|
|
_populate_Widgets_target_properties(RELEASE "Qt5Widgets.dll" "Qt5Widgets.lib" TRUE)
|
|
|
|
|
|
|
|
_populate_Widgets_target_properties(DEBUG "Qt5Widgetsd.dll" "Qt5Widgetsd.lib" TRUE)
|
|
|
|
|
|
|
|
# In Qt 5.15 the glob pattern was relaxed to also catch plugins not literally named Plugin.
|
|
# Define QT5_STRICT_PLUGIN_GLOB or ModuleName_STRICT_PLUGIN_GLOB to revert to old behavior.
|
|
if (QT5_STRICT_PLUGIN_GLOB OR Qt5Widgets_STRICT_PLUGIN_GLOB)
|
|
file(GLOB pluginTargets "${CMAKE_CURRENT_LIST_DIR}/Qt5Widgets_*Plugin.cmake")
|
|
else()
|
|
file(GLOB pluginTargets "${CMAKE_CURRENT_LIST_DIR}/Qt5Widgets_*.cmake")
|
|
endif()
|
|
|
|
macro(_populate_Widgets_plugin_properties Plugin Configuration PLUGIN_LOCATION
|
|
IsDebugAndRelease)
|
|
set_property(TARGET Qt5::${Plugin} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration})
|
|
|
|
set(imported_location "${_qt5Widgets_install_prefix}/plugins/${PLUGIN_LOCATION}")
|
|
_qt5_Widgets_check_file_exists(${imported_location})
|
|
set_target_properties(Qt5::${Plugin} PROPERTIES
|
|
"IMPORTED_LOCATION_${Configuration}" ${imported_location}
|
|
)
|
|
|
|
endmacro()
|
|
|
|
if (pluginTargets)
|
|
foreach(pluginTarget ${pluginTargets})
|
|
include(${pluginTarget})
|
|
endforeach()
|
|
endif()
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/Qt5WidgetsConfigExtras.cmake")
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/Qt5WidgetsMacros.cmake")
|
|
|
|
_qt5_Widgets_check_file_exists("${CMAKE_CURRENT_LIST_DIR}/Qt5WidgetsConfigVersion.cmake")
|
|
endif()
|