qskinny/playground/CMakeLists.txt

32 lines
643 B
CMake
Raw Normal View History

2022-09-29 20:31:47 +00:00
add_subdirectory(anchors)
add_subdirectory(dials)
2022-09-28 22:21:22 +00:00
add_subdirectory(dialogbuttons)
add_subdirectory(gradients)
2022-09-29 20:31:47 +00:00
add_subdirectory(invoker)
add_subdirectory(shadows)
add_subdirectory(shapes)
2022-09-28 22:21:22 +00:00
if (BUILD_INPUTCONTEXT)
add_subdirectory(inputpanel)
endif()
if (BUILD_QML_EXPORT)
add_subdirectory(images)
endif()
2023-03-31 09:08:29 +00:00
if (QT_VERSION_MAJOR VERSION_LESS 6)
if(TARGET Qt::WebEngine)
add_subdirectory(webview)
endif()
else()
2022-12-20 13:01:57 +00:00
if(TARGET Qt::WebEngineCore)
if(TARGET Qt::WebEngineQuick)
2022-10-30 19:19:51 +00:00
add_subdirectory(webview)
endif()
endif()
2022-09-28 22:21:22 +00:00
endif()
2022-12-20 13:01:57 +00:00
if(TARGET Qt::QuickWidgets)
2022-09-29 20:31:47 +00:00
add_subdirectory(grids)
2022-09-28 22:21:22 +00:00
endif()