Qt5OpenGLExtensionsConfig.cmake 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. if (CMAKE_VERSION VERSION_LESS 2.8.3)
  2. message(FATAL_ERROR "Qt 5 requires at least CMake version 2.8.3")
  3. endif()
  4. if(NOT DEFINED OE_QMAKE_PATH_EXTERNAL_HOST_BINS)
  5. message(WARNING Skipping because OE_QMAKE_PATH_EXTERNAL_HOST_BINS is not defined)
  6. return()
  7. endif()
  8. get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
  9. # Use original install prefix when loaded through a
  10. # cross-prefix symbolic link such as /lib -> /usr/lib.
  11. get_filename_component(_realCurr "${_IMPORT_PREFIX}" REALPATH)
  12. get_filename_component(_realOrig "/usr/lib/cmake/Qt5OpenGLExtensions" REALPATH)
  13. if(_realCurr STREQUAL _realOrig)
  14. get_filename_component(_qt5OpenGLExtensions_install_prefix "/usr/lib/../" ABSOLUTE)
  15. else()
  16. get_filename_component(_qt5OpenGLExtensions_install_prefix "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE)
  17. endif()
  18. unset(_realOrig)
  19. unset(_realCurr)
  20. unset(_IMPORT_PREFIX)
  21. # For backwards compatibility only. Use Qt5OpenGLExtensions_VERSION instead.
  22. set(Qt5OpenGLExtensions_VERSION_STRING 5.7.1)
  23. set(Qt5OpenGLExtensions_LIBRARIES Qt5::OpenGLExtensions)
  24. macro(_qt5_OpenGLExtensions_check_file_exists file)
  25. if(NOT EXISTS "${file}" )
  26. message(FATAL_ERROR "The imported target \"Qt5::OpenGLExtensions\" references the file
  27. \"${file}\"
  28. but this file does not exist. Possible reasons include:
  29. * The file was deleted, renamed, or moved to another location.
  30. * An install or uninstall procedure did not complete successfully.
  31. * The installation package was faulty and contained
  32. \"${CMAKE_CURRENT_LIST_FILE}\"
  33. but not all the files it references.
  34. ")
  35. endif()
  36. endmacro()
  37. macro(_populate_OpenGLExtensions_target_properties Configuration LIB_LOCATION IMPLIB_LOCATION)
  38. set_property(TARGET Qt5::OpenGLExtensions APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration})
  39. set(imported_location "${_qt5OpenGLExtensions_install_prefix}/lib/${LIB_LOCATION}")
  40. _qt5_OpenGLExtensions_check_file_exists(${imported_location})
  41. set_target_properties(Qt5::OpenGLExtensions PROPERTIES
  42. "INTERFACE_LINK_LIBRARIES" "${_Qt5OpenGLExtensions_LIB_DEPENDENCIES}"
  43. "IMPORTED_LOCATION_${Configuration}" ${imported_location}
  44. # For backward compatibility with CMake < 2.8.12
  45. "IMPORTED_LINK_INTERFACE_LIBRARIES_${Configuration}" "${_Qt5OpenGLExtensions_LIB_DEPENDENCIES}"
  46. )
  47. endmacro()
  48. if (NOT TARGET Qt5::OpenGLExtensions)
  49. set(_Qt5OpenGLExtensions_OWN_INCLUDE_DIRS "${_qt5OpenGLExtensions_install_prefix}/include/qt5/" "${_qt5OpenGLExtensions_install_prefix}/include/qt5/QtOpenGLExtensions")
  50. set(Qt5OpenGLExtensions_PRIVATE_INCLUDE_DIRS "")
  51. foreach(_dir ${_Qt5OpenGLExtensions_OWN_INCLUDE_DIRS})
  52. _qt5_OpenGLExtensions_check_file_exists(${_dir})
  53. endforeach()
  54. # Only check existence of private includes if the Private component is
  55. # specified.
  56. list(FIND Qt5OpenGLExtensions_FIND_COMPONENTS Private _check_private)
  57. if (NOT _check_private STREQUAL -1)
  58. foreach(_dir ${Qt5OpenGLExtensions_PRIVATE_INCLUDE_DIRS})
  59. _qt5_OpenGLExtensions_check_file_exists(${_dir})
  60. endforeach()
  61. endif()
  62. set(Qt5OpenGLExtensions_INCLUDE_DIRS ${_Qt5OpenGLExtensions_OWN_INCLUDE_DIRS})
  63. set(Qt5OpenGLExtensions_DEFINITIONS -DQT_OPENGLEXTENSIONS_LIB)
  64. set(Qt5OpenGLExtensions_COMPILE_DEFINITIONS QT_OPENGLEXTENSIONS_LIB)
  65. set(_Qt5OpenGLExtensions_MODULE_DEPENDENCIES "Gui;Core")
  66. set(_Qt5OpenGLExtensions_FIND_DEPENDENCIES_REQUIRED)
  67. if (Qt5OpenGLExtensions_FIND_REQUIRED)
  68. set(_Qt5OpenGLExtensions_FIND_DEPENDENCIES_REQUIRED REQUIRED)
  69. endif()
  70. set(_Qt5OpenGLExtensions_FIND_DEPENDENCIES_QUIET)
  71. if (Qt5OpenGLExtensions_FIND_QUIETLY)
  72. set(_Qt5OpenGLExtensions_DEPENDENCIES_FIND_QUIET QUIET)
  73. endif()
  74. set(_Qt5OpenGLExtensions_FIND_VERSION_EXACT)
  75. if (Qt5OpenGLExtensions_FIND_VERSION_EXACT)
  76. set(_Qt5OpenGLExtensions_FIND_VERSION_EXACT EXACT)
  77. endif()
  78. set(Qt5OpenGLExtensions_EXECUTABLE_COMPILE_FLAGS "")
  79. foreach(_module_dep ${_Qt5OpenGLExtensions_MODULE_DEPENDENCIES})
  80. if (NOT Qt5${_module_dep}_FOUND)
  81. find_package(Qt5${_module_dep}
  82. 5.7.1 ${_Qt5OpenGLExtensions_FIND_VERSION_EXACT}
  83. ${_Qt5OpenGLExtensions_DEPENDENCIES_FIND_QUIET}
  84. ${_Qt5OpenGLExtensions_FIND_DEPENDENCIES_REQUIRED}
  85. PATHS "${CMAKE_CURRENT_LIST_DIR}/.." NO_DEFAULT_PATH
  86. )
  87. endif()
  88. if (NOT Qt5${_module_dep}_FOUND)
  89. set(Qt5OpenGLExtensions_FOUND False)
  90. return()
  91. endif()
  92. list(APPEND Qt5OpenGLExtensions_INCLUDE_DIRS "${Qt5${_module_dep}_INCLUDE_DIRS}")
  93. list(APPEND Qt5OpenGLExtensions_PRIVATE_INCLUDE_DIRS "${Qt5${_module_dep}_PRIVATE_INCLUDE_DIRS}")
  94. list(APPEND Qt5OpenGLExtensions_DEFINITIONS ${Qt5${_module_dep}_DEFINITIONS})
  95. list(APPEND Qt5OpenGLExtensions_COMPILE_DEFINITIONS ${Qt5${_module_dep}_COMPILE_DEFINITIONS})
  96. list(APPEND Qt5OpenGLExtensions_EXECUTABLE_COMPILE_FLAGS ${Qt5${_module_dep}_EXECUTABLE_COMPILE_FLAGS})
  97. endforeach()
  98. list(REMOVE_DUPLICATES Qt5OpenGLExtensions_INCLUDE_DIRS)
  99. list(REMOVE_DUPLICATES Qt5OpenGLExtensions_PRIVATE_INCLUDE_DIRS)
  100. list(REMOVE_DUPLICATES Qt5OpenGLExtensions_DEFINITIONS)
  101. list(REMOVE_DUPLICATES Qt5OpenGLExtensions_COMPILE_DEFINITIONS)
  102. list(REMOVE_DUPLICATES Qt5OpenGLExtensions_EXECUTABLE_COMPILE_FLAGS)
  103. set(_Qt5OpenGLExtensions_LIB_DEPENDENCIES "Qt5::Gui;Qt5::Core")
  104. add_library(Qt5::OpenGLExtensions STATIC IMPORTED)
  105. set_property(TARGET Qt5::OpenGLExtensions PROPERTY IMPORTED_LINK_INTERFACE_LANGUAGES CXX)
  106. set_property(TARGET Qt5::OpenGLExtensions PROPERTY
  107. INTERFACE_INCLUDE_DIRECTORIES ${_Qt5OpenGLExtensions_OWN_INCLUDE_DIRS})
  108. set_property(TARGET Qt5::OpenGLExtensions PROPERTY
  109. INTERFACE_COMPILE_DEFINITIONS QT_OPENGLEXTENSIONS_LIB)
  110. _populate_OpenGLExtensions_target_properties(RELEASE "libQt5OpenGLExtensions.a" "" )
  111. file(GLOB pluginTargets "${CMAKE_CURRENT_LIST_DIR}/Qt5OpenGLExtensions_*Plugin.cmake")
  112. macro(_populate_OpenGLExtensions_plugin_properties Plugin Configuration PLUGIN_LOCATION)
  113. set_property(TARGET Qt5::${Plugin} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration})
  114. set(imported_location "${_qt5OpenGLExtensions_install_prefix}/lib/qt5/plugins/${PLUGIN_LOCATION}")
  115. _qt5_OpenGLExtensions_check_file_exists(${imported_location})
  116. set_target_properties(Qt5::${Plugin} PROPERTIES
  117. "IMPORTED_LOCATION_${Configuration}" ${imported_location}
  118. )
  119. endmacro()
  120. if (pluginTargets)
  121. foreach(pluginTarget ${pluginTargets})
  122. include(${pluginTarget})
  123. endforeach()
  124. endif()
  125. _qt5_OpenGLExtensions_check_file_exists("${CMAKE_CURRENT_LIST_DIR}/Qt5OpenGLExtensionsConfigVersion.cmake")
  126. endif()