Masterctrl/Lib/QtHTTPServer/cmake/Qt5HttpServer/Qt5HttpServerConfig.cmake
2021-05-26 04:15:57 -04:00

224 lines
8.5 KiB
CMake

if (CMAKE_VERSION VERSION_LESS 3.1.0)
message(FATAL_ERROR "Qt 5 HttpServer module requires at least CMake version 3.1.0")
endif()
get_filename_component(_qt5HttpServer_install_prefix "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE)
# For backwards compatibility only. Use Qt5HttpServer_VERSION instead.
set(Qt5HttpServer_VERSION_STRING 5.12.0)
set(Qt5HttpServer_LIBRARIES Qt5::HttpServer)
macro(_qt5_HttpServer_check_file_exists file)
if(NOT EXISTS "${file}" )
message(FATAL_ERROR "The imported target \"Qt5::HttpServer\" 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_HttpServer_target_properties Configuration LIB_LOCATION IMPLIB_LOCATION
IsDebugAndRelease)
set_property(TARGET Qt5::HttpServer APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration})
set(imported_location "${_qt5HttpServer_install_prefix}/bin/${LIB_LOCATION}")
_qt5_HttpServer_check_file_exists(${imported_location})
set(_deps
${_Qt5HttpServer_LIB_DEPENDENCIES}
)
set(_static_deps
)
set_target_properties(Qt5::HttpServer 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::HttpServer APPEND PROPERTY INTERFACE_LINK_LIBRARIES
"${_deps}"
)
set(imported_implib "${_qt5HttpServer_install_prefix}/lib/${IMPLIB_LOCATION}")
_qt5_HttpServer_check_file_exists(${imported_implib})
if(NOT "${IMPLIB_LOCATION}" STREQUAL "")
set_target_properties(Qt5::HttpServer PROPERTIES
"IMPORTED_IMPLIB_${Configuration}" ${imported_implib}
)
endif()
endmacro()
if (NOT TARGET Qt5::HttpServer)
set(_Qt5HttpServer_OWN_INCLUDE_DIRS "${_qt5HttpServer_install_prefix}/include/" "${_qt5HttpServer_install_prefix}/include/QtHttpServer")
set(Qt5HttpServer_PRIVATE_INCLUDE_DIRS
"${_qt5HttpServer_install_prefix}/include/QtHttpServer/5.12.0"
"${_qt5HttpServer_install_prefix}/include/QtHttpServer/5.12.0/QtHttpServer"
)
foreach(_dir ${_Qt5HttpServer_OWN_INCLUDE_DIRS})
_qt5_HttpServer_check_file_exists(${_dir})
endforeach()
# Only check existence of private includes if the Private component is
# specified.
list(FIND Qt5HttpServer_FIND_COMPONENTS Private _check_private)
if (NOT _check_private STREQUAL -1)
foreach(_dir ${Qt5HttpServer_PRIVATE_INCLUDE_DIRS})
_qt5_HttpServer_check_file_exists(${_dir})
endforeach()
endif()
set(Qt5HttpServer_INCLUDE_DIRS ${_Qt5HttpServer_OWN_INCLUDE_DIRS})
set(Qt5HttpServer_DEFINITIONS -DQT_HTTPSERVER_LIB)
set(Qt5HttpServer_COMPILE_DEFINITIONS QT_HTTPSERVER_LIB)
set(_Qt5HttpServer_MODULE_DEPENDENCIES "SslServer;WebSockets;Network;Concurrent;Core")
set(Qt5HttpServer_OWN_PRIVATE_INCLUDE_DIRS ${Qt5HttpServer_PRIVATE_INCLUDE_DIRS})
set(_Qt5HttpServer_FIND_DEPENDENCIES_REQUIRED)
if (Qt5HttpServer_FIND_REQUIRED)
set(_Qt5HttpServer_FIND_DEPENDENCIES_REQUIRED REQUIRED)
endif()
set(_Qt5HttpServer_FIND_DEPENDENCIES_QUIET)
if (Qt5HttpServer_FIND_QUIETLY)
set(_Qt5HttpServer_DEPENDENCIES_FIND_QUIET QUIET)
endif()
set(_Qt5HttpServer_FIND_VERSION_EXACT)
if (Qt5HttpServer_FIND_VERSION_EXACT)
set(_Qt5HttpServer_FIND_VERSION_EXACT EXACT)
endif()
set(Qt5HttpServer_EXECUTABLE_COMPILE_FLAGS "")
foreach(_module_dep ${_Qt5HttpServer_MODULE_DEPENDENCIES})
if (NOT Qt5${_module_dep}_FOUND)
find_package(Qt5${_module_dep}
5.12.0 ${_Qt5HttpServer_FIND_VERSION_EXACT}
${_Qt5HttpServer_DEPENDENCIES_FIND_QUIET}
${_Qt5HttpServer_FIND_DEPENDENCIES_REQUIRED}
PATHS "${CMAKE_CURRENT_LIST_DIR}/.." NO_DEFAULT_PATH
)
endif()
if (NOT Qt5${_module_dep}_FOUND)
set(Qt5HttpServer_FOUND False)
return()
endif()
list(APPEND Qt5HttpServer_INCLUDE_DIRS "${Qt5${_module_dep}_INCLUDE_DIRS}")
list(APPEND Qt5HttpServer_PRIVATE_INCLUDE_DIRS "${Qt5${_module_dep}_PRIVATE_INCLUDE_DIRS}")
list(APPEND Qt5HttpServer_DEFINITIONS ${Qt5${_module_dep}_DEFINITIONS})
list(APPEND Qt5HttpServer_COMPILE_DEFINITIONS ${Qt5${_module_dep}_COMPILE_DEFINITIONS})
list(APPEND Qt5HttpServer_EXECUTABLE_COMPILE_FLAGS ${Qt5${_module_dep}_EXECUTABLE_COMPILE_FLAGS})
endforeach()
list(REMOVE_DUPLICATES Qt5HttpServer_INCLUDE_DIRS)
list(REMOVE_DUPLICATES Qt5HttpServer_PRIVATE_INCLUDE_DIRS)
list(REMOVE_DUPLICATES Qt5HttpServer_DEFINITIONS)
list(REMOVE_DUPLICATES Qt5HttpServer_COMPILE_DEFINITIONS)
list(REMOVE_DUPLICATES Qt5HttpServer_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::HttpServer)
return()
endif()
set(_Qt5HttpServer_LIB_DEPENDENCIES "Qt5::SslServer;Qt5::WebSockets;Qt5::Network;Qt5::Concurrent;Qt5::Core")
add_library(Qt5::HttpServer SHARED IMPORTED)
set_property(TARGET Qt5::HttpServer PROPERTY
INTERFACE_INCLUDE_DIRECTORIES ${_Qt5HttpServer_OWN_INCLUDE_DIRS})
set_property(TARGET Qt5::HttpServer PROPERTY
INTERFACE_COMPILE_DEFINITIONS QT_HTTPSERVER_LIB)
set_property(TARGET Qt5::HttpServer PROPERTY INTERFACE_QT_ENABLED_FEATURES )
set_property(TARGET Qt5::HttpServer PROPERTY INTERFACE_QT_DISABLED_FEATURES )
set_property(TARGET Qt5::HttpServer PROPERTY INTERFACE_QT_PLUGIN_TYPES "")
set(_Qt5HttpServer_PRIVATE_DIRS_EXIST TRUE)
foreach (_Qt5HttpServer_PRIVATE_DIR ${Qt5HttpServer_OWN_PRIVATE_INCLUDE_DIRS})
if (NOT EXISTS ${_Qt5HttpServer_PRIVATE_DIR})
set(_Qt5HttpServer_PRIVATE_DIRS_EXIST FALSE)
endif()
endforeach()
if (_Qt5HttpServer_PRIVATE_DIRS_EXIST)
add_library(Qt5::HttpServerPrivate INTERFACE IMPORTED)
set_property(TARGET Qt5::HttpServerPrivate PROPERTY
INTERFACE_INCLUDE_DIRECTORIES ${Qt5HttpServer_OWN_PRIVATE_INCLUDE_DIRS}
)
set(_Qt5HttpServer_PRIVATEDEPS)
foreach(dep ${_Qt5HttpServer_LIB_DEPENDENCIES})
if (TARGET ${dep}Private)
list(APPEND _Qt5HttpServer_PRIVATEDEPS ${dep}Private)
endif()
endforeach()
set_property(TARGET Qt5::HttpServerPrivate PROPERTY
INTERFACE_LINK_LIBRARIES Qt5::HttpServer ${_Qt5HttpServer_PRIVATEDEPS}
)
endif()
_populate_HttpServer_target_properties(DEBUG "Qt5HttpServer.dll" "libQt5HttpServer.a" FALSE)
if (EXISTS
"${_qt5HttpServer_install_prefix}/bin/Qt5HttpServer.dll"
AND EXISTS
"${_qt5HttpServer_install_prefix}/lib/libQt5HttpServer.a" )
_populate_HttpServer_target_properties(RELEASE "Qt5HttpServer.dll" "libQt5HttpServer.a" FALSE)
endif()
file(GLOB pluginTargets "${CMAKE_CURRENT_LIST_DIR}/Qt5HttpServer_*Plugin.cmake")
macro(_populate_HttpServer_plugin_properties Plugin Configuration PLUGIN_LOCATION
IsDebugAndRelease)
set_property(TARGET Qt5::${Plugin} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration})
set(imported_location "${_qt5HttpServer_install_prefix}/plugins/${PLUGIN_LOCATION}")
_qt5_HttpServer_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()
_qt5_HttpServer_check_file_exists("${CMAKE_CURRENT_LIST_DIR}/Qt5HttpServerConfigVersion.cmake")
endif()