Zhao Yuhang
2024-05-23 6002cd46a2c5a1c2c4afdbf8e491e76f68b9bfd8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@PACKAGE_INIT@
 
include(CMakeFindDependencyMacro)
 
find_dependency(QT NAMES Qt6 Qt5 COMPONENTS Core Gui REQUIRED)
find_dependency(Qt${QT_VERSION_MAJOR} COMPONENTS Core Gui REQUIRED)
 
if ("Widgets" IN_LIST QWindowKit_FIND_COMPONENTS)
    find_dependency(QT NAMES Qt6 Qt5 COMPONENTS Widgets REQUIRED)
    find_dependency(Qt${QT_VERSION_MAJOR} COMPONENTS Widgets REQUIRED)
endif()
 
if ("Quick" IN_LIST QWindowKit_FIND_COMPONENTS)
    find_dependency(QT NAMES Qt6 Qt5 COMPONENTS Quick REQUIRED)
    find_dependency(Qt${QT_VERSION_MAJOR} COMPONENTS Quick REQUIRED)
endif()
 
include("${CMAKE_CURRENT_LIST_DIR}/QWindowKitTargets.cmake")