forked from github_mirror/framelesshelper
12 lines
307 B
CMake
12 lines
307 B
CMake
find_package(QT NAMES Qt6 Qt5 COMPONENTS Widgets Quick)
|
|
find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Widgets Quick)
|
|
|
|
if(TARGET Qt${QT_VERSION_MAJOR}::Widgets)
|
|
add_subdirectory(widget)
|
|
add_subdirectory(mainwindow)
|
|
endif()
|
|
|
|
if(TARGET Qt${QT_VERSION_MAJOR}::Quick)
|
|
add_subdirectory(quick)
|
|
endif()
|