8 lines
189 B
CMake
8 lines
189 B
CMake
|
|
option(WITH_QT6 "Use Qt 6 (disable to use Qt 5 instead)" ON)
|
||
|
|
|
||
|
|
if (WITH_QT6)
|
||
|
|
include(${CMAKE_CURRENT_LIST_DIR}/qt6.cmake)
|
||
|
|
else()
|
||
|
|
include(${CMAKE_CURRENT_LIST_DIR}/qt5.cmake)
|
||
|
|
endif()
|