Qt5GuiConfigExtras.cmake 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. macro(_qt5gui_find_extra_libs Name Libs LibDir IncDirs)
  2. set(Qt5Gui_${Name}_LIBRARIES)
  3. set(Qt5Gui_${Name}_INCLUDE_DIRS ${IncDirs})
  4. foreach(_lib ${Libs})
  5. string(REGEX REPLACE [^_A-Za-z0-9] _ _cmake_lib_name ${_lib})
  6. if (NOT TARGET Qt5::Gui_${_cmake_lib_name} AND NOT _Qt5Gui_${_cmake_lib_name}_LIBRARY_DONE)
  7. find_library(Qt5Gui_${_cmake_lib_name}_LIBRARY ${_lib}
  8. )
  9. if (NOT Qt5Gui_${_cmake_lib_name}_LIBRARY)
  10. # The above find_library call doesn't work for finding
  11. # libraries in Windows SDK paths outside of the proper
  12. # environment, even if the libraries are present. In other
  13. # cases it is OK for the libraries to not be found
  14. # because they are optional dependencies of Qt5Gui, needed
  15. # only if the qopengl.h header is used.
  16. # We try to find the libraries in the first place because Qt may be
  17. # compiled with another set of GL libraries (such as coming
  18. # from ANGLE). The point of these find calls is to try to
  19. # find the same binaries as Qt is compiled with (as they are
  20. # in the interface of QtGui), so an effort is made to do so
  21. # above with paths known to qmake.
  22. set(_Qt5Gui_${_cmake_lib_name}_LIBRARY_DONE TRUE)
  23. unset(Qt5Gui_${_cmake_lib_name}_LIBRARY CACHE)
  24. else()
  25. add_library(Qt5::Gui_${_cmake_lib_name} SHARED IMPORTED)
  26. set_property(TARGET Qt5::Gui_${_cmake_lib_name} APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${Qt5Gui_${Name}_INCLUDE_DIRS})
  27. set_property(TARGET Qt5::Gui_${_cmake_lib_name} APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
  28. _qt5_Gui_check_file_exists("${Qt5Gui_${_cmake_lib_name}_LIBRARY}")
  29. set_property(TARGET Qt5::Gui_${_cmake_lib_name} PROPERTY IMPORTED_LOCATION_RELEASE "${Qt5Gui_${_cmake_lib_name}_LIBRARY}")
  30. unset(Qt5Gui_${_cmake_lib_name}_LIBRARY CACHE)
  31. find_library(Qt5Gui_${_cmake_lib_name}_LIBRARY_DEBUG ${_lib}d
  32. PATHS "${LibDir}"
  33. NO_DEFAULT_PATH
  34. )
  35. if (Qt5Gui_${_cmake_lib_name}_LIBRARY_DEBUG)
  36. set_property(TARGET Qt5::Gui_${_cmake_lib_name} APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
  37. _qt5_Gui_check_file_exists("${Qt5Gui_${_cmake_lib_name}_LIBRARY_DEBUG}")
  38. set_property(TARGET Qt5::Gui_${_cmake_lib_name} PROPERTY IMPORTED_LOCATION_DEBUG "${Qt5Gui_${_cmake_lib_name}_LIBRARY_DEBUG}")
  39. endif()
  40. unset(Qt5Gui_${_cmake_lib_name}_LIBRARY_DEBUG CACHE)
  41. list(APPEND Qt5Gui_${Name}_LIBRARIES Qt5::Gui_${_cmake_lib_name})
  42. endif()
  43. endif()
  44. endforeach()
  45. endmacro()
  46. _qt5gui_find_extra_libs(EGL "EGL;IMGegl;drm_omap;srv_um" "" "")
  47. _qt5gui_find_extra_libs(OPENGL "GLESv2;srv_um" "" "")
  48. set(Qt5Gui_OPENGL_IMPLEMENTATION GLESv2)
  49. get_target_property(_configs Qt5::Gui IMPORTED_CONFIGURATIONS)
  50. foreach(_config ${_configs})
  51. set_property(TARGET Qt5::Gui APPEND PROPERTY
  52. IMPORTED_LINK_DEPENDENT_LIBRARIES_${_config}
  53. ${Qt5Gui_EGL_LIBRARIES} ${Qt5Gui_OPENGL_LIBRARIES}
  54. )
  55. endforeach()
  56. unset(_configs)