mirror of
https://github.com/Retropex/dolphin.git
synced 2025-05-19 06:40:43 +02:00
173 lines
5.9 KiB
CMake
173 lines
5.9 KiB
CMake
if (CMAKE_VERSION VERSION_LESS 3.1.0)
|
|
message(FATAL_ERROR "Qt 5 Zlib module requires at least CMake version 3.1.0")
|
|
endif()
|
|
|
|
get_filename_component(_qt5Zlib_install_prefix "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE)
|
|
|
|
|
|
macro(_qt5_Zlib_check_file_exists file)
|
|
if(NOT EXISTS "${file}" )
|
|
message(FATAL_ERROR "The imported target \"Qt5::Zlib\" 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()
|
|
|
|
|
|
|
|
if (NOT TARGET Qt5::Zlib)
|
|
|
|
set(_Qt5Zlib_OWN_INCLUDE_DIRS "${_qt5Zlib_install_prefix}/include/" "${_qt5Zlib_install_prefix}/include/QtZlib")
|
|
set(Qt5Zlib_PRIVATE_INCLUDE_DIRS "")
|
|
include("${CMAKE_CURRENT_LIST_DIR}/ExtraSourceIncludes.cmake" OPTIONAL)
|
|
|
|
foreach(_dir ${_Qt5Zlib_OWN_INCLUDE_DIRS})
|
|
_qt5_Zlib_check_file_exists(${_dir})
|
|
endforeach()
|
|
|
|
# Only check existence of private includes if the Private component is
|
|
# specified.
|
|
list(FIND Qt5Zlib_FIND_COMPONENTS Private _check_private)
|
|
if (NOT _check_private STREQUAL -1)
|
|
foreach(_dir ${Qt5Zlib_PRIVATE_INCLUDE_DIRS})
|
|
_qt5_Zlib_check_file_exists(${_dir})
|
|
endforeach()
|
|
endif()
|
|
|
|
set(_Qt5Zlib_MODULE_DEPENDENCIES "")
|
|
|
|
|
|
set(Qt5Zlib_OWN_PRIVATE_INCLUDE_DIRS ${Qt5Zlib_PRIVATE_INCLUDE_DIRS})
|
|
|
|
set(_Qt5Zlib_FIND_DEPENDENCIES_REQUIRED)
|
|
if (Qt5Zlib_FIND_REQUIRED)
|
|
set(_Qt5Zlib_FIND_DEPENDENCIES_REQUIRED REQUIRED)
|
|
endif()
|
|
set(_Qt5Zlib_FIND_DEPENDENCIES_QUIET)
|
|
if (Qt5Zlib_FIND_QUIETLY)
|
|
set(_Qt5Zlib_DEPENDENCIES_FIND_QUIET QUIET)
|
|
endif()
|
|
set(_Qt5Zlib_FIND_VERSION_EXACT)
|
|
if (Qt5Zlib_FIND_VERSION_EXACT)
|
|
set(_Qt5Zlib_FIND_VERSION_EXACT EXACT)
|
|
endif()
|
|
|
|
|
|
foreach(_module_dep ${_Qt5Zlib_MODULE_DEPENDENCIES})
|
|
if (NOT Qt5${_module_dep}_FOUND)
|
|
find_package(Qt5${_module_dep}
|
|
5.15.0 ${_Qt5Zlib_FIND_VERSION_EXACT}
|
|
${_Qt5Zlib_DEPENDENCIES_FIND_QUIET}
|
|
${_Qt5Zlib_FIND_DEPENDENCIES_REQUIRED}
|
|
PATHS "${CMAKE_CURRENT_LIST_DIR}/.." NO_DEFAULT_PATH
|
|
)
|
|
endif()
|
|
|
|
if (NOT Qt5${_module_dep}_FOUND)
|
|
set(Qt5Zlib_FOUND False)
|
|
return()
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
# 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::Zlib)
|
|
return()
|
|
endif()
|
|
|
|
set(_Qt5Zlib_LIB_DEPENDENCIES "")
|
|
|
|
|
|
add_library(Qt5::Zlib INTERFACE IMPORTED)
|
|
|
|
# Add a versionless target, for compatibility with Qt6.
|
|
if(NOT "${QT_NO_CREATE_VERSIONLESS_TARGETS}" AND NOT TARGET Qt::Zlib)
|
|
add_library(Qt::Zlib INTERFACE IMPORTED)
|
|
set_target_properties(Qt::Zlib PROPERTIES
|
|
INTERFACE_LINK_LIBRARIES "Qt5::Zlib"
|
|
)
|
|
endif()
|
|
|
|
|
|
set_property(TARGET Qt5::Zlib PROPERTY
|
|
INTERFACE_INCLUDE_DIRECTORIES ${_Qt5Zlib_OWN_INCLUDE_DIRS})
|
|
set_property(TARGET Qt5::Zlib PROPERTY
|
|
INTERFACE_COMPILE_DEFINITIONS QT_ZLIB_LIB)
|
|
|
|
set_property(TARGET Qt5::Zlib PROPERTY INTERFACE_QT_ENABLED_FEATURES )
|
|
set_property(TARGET Qt5::Zlib PROPERTY INTERFACE_QT_DISABLED_FEATURES )
|
|
|
|
# Qt 6 forward compatible properties.
|
|
set_property(TARGET Qt5::Zlib
|
|
PROPERTY INTERFACE_QT_ENABLED_PUBLIC_FEATURES
|
|
)
|
|
set_property(TARGET Qt5::Zlib
|
|
PROPERTY INTERFACE_QT_DISABLED_PUBLIC_FEATURES
|
|
)
|
|
set_property(TARGET Qt5::Zlib
|
|
PROPERTY INTERFACE_QT_ENABLED_PRIVATE_FEATURES
|
|
)
|
|
set_property(TARGET Qt5::Zlib
|
|
PROPERTY INTERFACE_QT_DISABLED_PRIVATE_FEATURES
|
|
)
|
|
|
|
set_property(TARGET Qt5::Zlib PROPERTY INTERFACE_QT_PLUGIN_TYPES "")
|
|
|
|
set(_Qt5Zlib_PRIVATE_DIRS_EXIST TRUE)
|
|
foreach (_Qt5Zlib_PRIVATE_DIR ${Qt5Zlib_OWN_PRIVATE_INCLUDE_DIRS})
|
|
if (NOT EXISTS ${_Qt5Zlib_PRIVATE_DIR})
|
|
set(_Qt5Zlib_PRIVATE_DIRS_EXIST FALSE)
|
|
endif()
|
|
endforeach()
|
|
|
|
if (_Qt5Zlib_PRIVATE_DIRS_EXIST)
|
|
add_library(Qt5::ZlibPrivate INTERFACE IMPORTED)
|
|
set_property(TARGET Qt5::ZlibPrivate PROPERTY
|
|
INTERFACE_INCLUDE_DIRECTORIES ${Qt5Zlib_OWN_PRIVATE_INCLUDE_DIRS}
|
|
)
|
|
set(_Qt5Zlib_PRIVATEDEPS)
|
|
foreach(dep ${_Qt5Zlib_LIB_DEPENDENCIES})
|
|
if (TARGET ${dep}Private)
|
|
list(APPEND _Qt5Zlib_PRIVATEDEPS ${dep}Private)
|
|
endif()
|
|
endforeach()
|
|
set_property(TARGET Qt5::ZlibPrivate PROPERTY
|
|
INTERFACE_LINK_LIBRARIES Qt5::Zlib ${_Qt5Zlib_PRIVATEDEPS}
|
|
)
|
|
|
|
# Add a versionless target, for compatibility with Qt6.
|
|
if(NOT "${QT_NO_CREATE_VERSIONLESS_TARGETS}" AND NOT TARGET Qt::ZlibPrivate)
|
|
add_library(Qt::ZlibPrivate INTERFACE IMPORTED)
|
|
set_target_properties(Qt::ZlibPrivate PROPERTIES
|
|
INTERFACE_LINK_LIBRARIES "Qt5::ZlibPrivate"
|
|
)
|
|
endif()
|
|
endif()
|
|
|
|
set_target_properties(Qt5::Zlib PROPERTIES
|
|
INTERFACE_LINK_LIBRARIES "${_Qt5Zlib_LIB_DEPENDENCIES}"
|
|
)
|
|
|
|
|
|
|
|
|
|
_qt5_Zlib_check_file_exists("${CMAKE_CURRENT_LIST_DIR}/Qt5ZlibConfigVersion.cmake")
|
|
endif()
|