b908c5cf28
The example seems incomplete, is undocumented (and unused in shippets, in spite of tags being present), and generally full of comments that give the impression that this is for manual testing rather than showing best practices. Pick-to: 6.5 6.6 Change-Id: Ie615420e493cc6bb461c5d9ff8d4ae82bb3591db Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@qt.io>
33 lines
803 B
CMake
33 lines
803 B
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
if(NOT TARGET Qt6::Widgets)
|
|
return()
|
|
endif()
|
|
if(QT_FEATURE_animation)
|
|
add_subdirectory(animation)
|
|
endif()
|
|
add_subdirectory(desktop)
|
|
add_subdirectory(dialogs)
|
|
add_subdirectory(effects)
|
|
qt_internal_add_example(gallery)
|
|
add_subdirectory(gestures)
|
|
add_subdirectory(graphicsview)
|
|
add_subdirectory(itemviews)
|
|
add_subdirectory(layouts)
|
|
add_subdirectory(painting)
|
|
add_subdirectory(richtext)
|
|
add_subdirectory(tools)
|
|
add_subdirectory(touch)
|
|
add_subdirectory(tutorials)
|
|
add_subdirectory(widgets)
|
|
if(QT_FEATURE_draganddrop)
|
|
add_subdirectory(draganddrop)
|
|
endif()
|
|
if(QT_FEATURE_cursor)
|
|
add_subdirectory(mainwindows)
|
|
endif()
|
|
if(QT_FEATURE_opengl AND TARGET Qt6::Gui)
|
|
qt_internal_add_example(windowcontainer)
|
|
endif()
|