24 lines
563 B
CMake
24 lines
563 B
CMake
add_subdirectory(anchors)
|
|
add_subdirectory(dials)
|
|
add_subdirectory(dialogbuttons)
|
|
add_subdirectory(invoker)
|
|
add_subdirectory(inputpanel)
|
|
add_subdirectory(images)
|
|
add_subdirectory(shadows)
|
|
|
|
if (Qt_VERSION_MAJOR VERSION_EQUAL "6")
|
|
if(TARGET ${Qt}::WebEngineCore)
|
|
if(TARGET ${Qt}::WebEngineQuick)
|
|
add_subdirectory(webview)
|
|
endif()
|
|
endif()
|
|
elseif(Qt_VERSION VERSION_EQUAL "5")
|
|
if(TARGET ${Qt}::WebEngine)
|
|
add_subdirectory(webview)
|
|
endif()
|
|
endif()
|
|
|
|
if(TARGET ${Qt}::QuickWidgets)
|
|
add_subdirectory(grids)
|
|
endif()
|