mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-08-19 21:03:25 -07:00
Updated ProxSpace
This commit is contained in:
parent
0565d54ef3
commit
7d4bfb6fe4
40881 changed files with 3752088 additions and 4038573 deletions
159
Qt/5.6/lib/cmake/Qt5Sensors/Qt5SensorsConfig.cmake
Normal file
159
Qt/5.6/lib/cmake/Qt5Sensors/Qt5SensorsConfig.cmake
Normal file
|
@ -0,0 +1,159 @@
|
|||
|
||||
if (CMAKE_VERSION VERSION_LESS 2.8.3)
|
||||
message(FATAL_ERROR "Qt 5 requires at least CMake version 2.8.3")
|
||||
endif()
|
||||
|
||||
get_filename_component(_qt5Sensors_install_prefix "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE)
|
||||
|
||||
# For backwards compatibility only. Use Qt5Sensors_VERSION instead.
|
||||
set(Qt5Sensors_VERSION_STRING 5.6.1)
|
||||
|
||||
set(Qt5Sensors_LIBRARIES Qt5::Sensors)
|
||||
|
||||
macro(_qt5_Sensors_check_file_exists file)
|
||||
if(NOT EXISTS "${file}" )
|
||||
message(FATAL_ERROR "The imported target \"Qt5::Sensors\" 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_Sensors_target_properties Configuration LIB_LOCATION IMPLIB_LOCATION)
|
||||
set_property(TARGET Qt5::Sensors APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration})
|
||||
|
||||
set(imported_location "${_qt5Sensors_install_prefix}/bin/${LIB_LOCATION}")
|
||||
_qt5_Sensors_check_file_exists(${imported_location})
|
||||
set_target_properties(Qt5::Sensors PROPERTIES
|
||||
"INTERFACE_LINK_LIBRARIES" "${_Qt5Sensors_LIB_DEPENDENCIES}"
|
||||
"IMPORTED_LOCATION_${Configuration}" ${imported_location}
|
||||
# For backward compatibility with CMake < 2.8.12
|
||||
"IMPORTED_LINK_INTERFACE_LIBRARIES_${Configuration}" "${_Qt5Sensors_LIB_DEPENDENCIES}"
|
||||
)
|
||||
|
||||
set(imported_implib "${_qt5Sensors_install_prefix}/lib/${IMPLIB_LOCATION}")
|
||||
_qt5_Sensors_check_file_exists(${imported_implib})
|
||||
if(NOT "${IMPLIB_LOCATION}" STREQUAL "")
|
||||
set_target_properties(Qt5::Sensors PROPERTIES
|
||||
"IMPORTED_IMPLIB_${Configuration}" ${imported_implib}
|
||||
)
|
||||
endif()
|
||||
endmacro()
|
||||
|
||||
if (NOT TARGET Qt5::Sensors)
|
||||
|
||||
set(_Qt5Sensors_OWN_INCLUDE_DIRS "${_qt5Sensors_install_prefix}/include/" "${_qt5Sensors_install_prefix}/include/QtSensors")
|
||||
set(Qt5Sensors_PRIVATE_INCLUDE_DIRS
|
||||
"${_qt5Sensors_install_prefix}/include/QtSensors/5.6.1"
|
||||
"${_qt5Sensors_install_prefix}/include/QtSensors/5.6.1/QtSensors"
|
||||
)
|
||||
|
||||
foreach(_dir ${_Qt5Sensors_OWN_INCLUDE_DIRS})
|
||||
_qt5_Sensors_check_file_exists(${_dir})
|
||||
endforeach()
|
||||
|
||||
# Only check existence of private includes if the Private component is
|
||||
# specified.
|
||||
list(FIND Qt5Sensors_FIND_COMPONENTS Private _check_private)
|
||||
if (NOT _check_private STREQUAL -1)
|
||||
foreach(_dir ${Qt5Sensors_PRIVATE_INCLUDE_DIRS})
|
||||
_qt5_Sensors_check_file_exists(${_dir})
|
||||
endforeach()
|
||||
endif()
|
||||
|
||||
set(Qt5Sensors_INCLUDE_DIRS ${_Qt5Sensors_OWN_INCLUDE_DIRS})
|
||||
|
||||
set(Qt5Sensors_DEFINITIONS -DQT_SENSORS_LIB)
|
||||
set(Qt5Sensors_COMPILE_DEFINITIONS QT_SENSORS_LIB)
|
||||
set(_Qt5Sensors_MODULE_DEPENDENCIES "Core")
|
||||
|
||||
|
||||
set(_Qt5Sensors_FIND_DEPENDENCIES_REQUIRED)
|
||||
if (Qt5Sensors_FIND_REQUIRED)
|
||||
set(_Qt5Sensors_FIND_DEPENDENCIES_REQUIRED REQUIRED)
|
||||
endif()
|
||||
set(_Qt5Sensors_FIND_DEPENDENCIES_QUIET)
|
||||
if (Qt5Sensors_FIND_QUIETLY)
|
||||
set(_Qt5Sensors_DEPENDENCIES_FIND_QUIET QUIET)
|
||||
endif()
|
||||
set(_Qt5Sensors_FIND_VERSION_EXACT)
|
||||
if (Qt5Sensors_FIND_VERSION_EXACT)
|
||||
set(_Qt5Sensors_FIND_VERSION_EXACT EXACT)
|
||||
endif()
|
||||
|
||||
set(Qt5Sensors_EXECUTABLE_COMPILE_FLAGS "")
|
||||
|
||||
foreach(_module_dep ${_Qt5Sensors_MODULE_DEPENDENCIES})
|
||||
if (NOT Qt5${_module_dep}_FOUND)
|
||||
find_package(Qt5${_module_dep}
|
||||
5.6.1 ${_Qt5Sensors_FIND_VERSION_EXACT}
|
||||
${_Qt5Sensors_DEPENDENCIES_FIND_QUIET}
|
||||
${_Qt5Sensors_FIND_DEPENDENCIES_REQUIRED}
|
||||
PATHS "${CMAKE_CURRENT_LIST_DIR}/.." NO_DEFAULT_PATH
|
||||
)
|
||||
endif()
|
||||
|
||||
if (NOT Qt5${_module_dep}_FOUND)
|
||||
set(Qt5Sensors_FOUND False)
|
||||
return()
|
||||
endif()
|
||||
|
||||
list(APPEND Qt5Sensors_INCLUDE_DIRS "${Qt5${_module_dep}_INCLUDE_DIRS}")
|
||||
list(APPEND Qt5Sensors_PRIVATE_INCLUDE_DIRS "${Qt5${_module_dep}_PRIVATE_INCLUDE_DIRS}")
|
||||
list(APPEND Qt5Sensors_DEFINITIONS ${Qt5${_module_dep}_DEFINITIONS})
|
||||
list(APPEND Qt5Sensors_COMPILE_DEFINITIONS ${Qt5${_module_dep}_COMPILE_DEFINITIONS})
|
||||
list(APPEND Qt5Sensors_EXECUTABLE_COMPILE_FLAGS ${Qt5${_module_dep}_EXECUTABLE_COMPILE_FLAGS})
|
||||
endforeach()
|
||||
list(REMOVE_DUPLICATES Qt5Sensors_INCLUDE_DIRS)
|
||||
list(REMOVE_DUPLICATES Qt5Sensors_PRIVATE_INCLUDE_DIRS)
|
||||
list(REMOVE_DUPLICATES Qt5Sensors_DEFINITIONS)
|
||||
list(REMOVE_DUPLICATES Qt5Sensors_COMPILE_DEFINITIONS)
|
||||
list(REMOVE_DUPLICATES Qt5Sensors_EXECUTABLE_COMPILE_FLAGS)
|
||||
|
||||
set(_Qt5Sensors_LIB_DEPENDENCIES "Qt5::Core")
|
||||
|
||||
|
||||
add_library(Qt5::Sensors SHARED IMPORTED)
|
||||
|
||||
set_property(TARGET Qt5::Sensors PROPERTY
|
||||
INTERFACE_INCLUDE_DIRECTORIES ${_Qt5Sensors_OWN_INCLUDE_DIRS})
|
||||
set_property(TARGET Qt5::Sensors PROPERTY
|
||||
INTERFACE_COMPILE_DEFINITIONS QT_SENSORS_LIB)
|
||||
|
||||
_populate_Sensors_target_properties(RELEASE "Qt5Sensors.dll" "libQt5Sensors.a" )
|
||||
|
||||
|
||||
|
||||
_populate_Sensors_target_properties(DEBUG "Qt5Sensorsd.dll" "libQt5Sensorsd.a" )
|
||||
|
||||
|
||||
|
||||
file(GLOB pluginTargets "${CMAKE_CURRENT_LIST_DIR}/Qt5Sensors_*Plugin.cmake")
|
||||
|
||||
macro(_populate_Sensors_plugin_properties Plugin Configuration PLUGIN_LOCATION)
|
||||
set_property(TARGET Qt5::${Plugin} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration})
|
||||
|
||||
set(imported_location "${_qt5Sensors_install_prefix}/plugins/${PLUGIN_LOCATION}")
|
||||
_qt5_Sensors_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_Sensors_check_file_exists("${CMAKE_CURRENT_LIST_DIR}/Qt5SensorsConfigVersion.cmake")
|
||||
|
||||
endif()
|
Loading…
Add table
Add a link
Reference in a new issue