QWindowKitConfig.cmake.in 629 B

123456789101112131415161718
  1. @PACKAGE_INIT@
  2. include(CMakeFindDependencyMacro)
  3. find_dependency(QT NAMES Qt6 Qt5 COMPONENTS Core Gui REQUIRED)
  4. find_dependency(Qt${QT_VERSION_MAJOR} COMPONENTS Core Gui REQUIRED)
  5. if ("Widgets" IN_LIST QWindowKit_FIND_COMPONENTS)
  6. find_dependency(QT NAMES Qt6 Qt5 COMPONENTS Widgets REQUIRED)
  7. find_dependency(Qt${QT_VERSION_MAJOR} COMPONENTS Widgets REQUIRED)
  8. endif()
  9. if ("Quick" IN_LIST QWindowKit_FIND_COMPONENTS)
  10. find_dependency(QT NAMES Qt6 Qt5 COMPONENTS Quick REQUIRED)
  11. find_dependency(Qt${QT_VERSION_MAJOR} COMPONENTS Quick REQUIRED)
  12. endif()
  13. include("${CMAKE_CURRENT_LIST_DIR}/QWindowKitTargets.cmake")