1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- if (CMAKE_VERSION VERSION_LESS 2.8.9)
- message(FATAL_ERROR "Qt5 requires at least CMake version 2.8.9")
- endif()
- if(NOT DEFINED OE_QMAKE_PATH_EXTERNAL_HOST_BINS)
- message(WARNING Skipping because OE_QMAKE_PATH_EXTERNAL_HOST_BINS is not defined)
- return()
- endif()
- if (NOT Qt5_FIND_COMPONENTS)
- set(Qt5_NOT_FOUND_MESSAGE "The Qt5 package requires at least one component")
- set(Qt5_FOUND False)
- return()
- endif()
- set(_Qt5_FIND_PARTS_REQUIRED)
- if (Qt5_FIND_REQUIRED)
- set(_Qt5_FIND_PARTS_REQUIRED REQUIRED)
- endif()
- set(_Qt5_FIND_PARTS_QUIET)
- if (Qt5_FIND_QUIETLY)
- set(_Qt5_FIND_PARTS_QUIET QUIET)
- endif()
- get_filename_component(_qt5_install_prefix "${CMAKE_CURRENT_LIST_DIR}/.." ABSOLUTE)
- set(_Qt5_NOTFOUND_MESSAGE)
- foreach(module ${Qt5_FIND_COMPONENTS})
- find_package(Qt5${module}
- ${_Qt5_FIND_PARTS_QUIET}
- ${_Qt5_FIND_PARTS_REQUIRED}
- PATHS "${_qt5_install_prefix}" NO_DEFAULT_PATH
- )
- if (NOT Qt5${module}_FOUND)
- if (Qt5_FIND_REQUIRED_${module})
- set(_Qt5_NOTFOUND_MESSAGE "${_Qt5_NOTFOUND_MESSAGE}Failed to find Qt5 component \"${module}\" config file at \"${_qt5_install_prefix}/Qt5${module}/Qt5${module}Config.cmake\"\n")
- elseif(NOT Qt5_FIND_QUIETLY)
- message(WARNING "Failed to find Qt5 component \"${module}\" config file at \"${_qt5_install_prefix}/Qt5${module}/Qt5${module}Config.cmake\"")
- endif()
- endif()
- endforeach()
- if (_Qt5_NOTFOUND_MESSAGE)
- set(Qt5_NOT_FOUND_MESSAGE "${_Qt5_NOTFOUND_MESSAGE}")
- set(Qt5_FOUND False)
- endif()
- _qt5_Core_check_file_exists("${CMAKE_CURRENT_LIST_DIR}/Qt5ConfigVersion.cmake")
|