qt5base-lts/examples/CMakeLists.txt
Lucie Gérard 4c36bb854c Remove undocumented embedded examples
Task-number: QTBUG-119117
Change-Id: I7fd104742771e2ce6d4ad7afd66e2beca3b4f672
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
2023-11-17 19:39:33 +01:00

41 lines
856 B
CMake

# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
qt_examples_build_begin(EXTERNAL_BUILD)
add_compile_definitions(QT_NO_CONTEXTLESS_CONNECT)
add_subdirectory(corelib)
if(TARGET Qt6::DBus)
add_subdirectory(dbus)
endif()
if(TARGET Qt6::Network)
add_subdirectory(network)
endif()
if(TARGET Qt6::Test)
add_subdirectory(qtestlib)
endif()
if(TARGET Qt6::Concurrent)
add_subdirectory(qtconcurrent)
endif()
if(TARGET Qt6::Sql)
add_subdirectory(sql)
endif()
if(TARGET Qt6::Widgets)
add_subdirectory(widgets)
endif()
if(TARGET Qt6::Xml)
add_subdirectory(xml)
endif()
if(TARGET Qt6::Gui)
add_subdirectory(gui)
endif()
if(QT_FEATURE_opengl AND TARGET Qt6::Gui)
add_subdirectory(opengl)
endif()
if(QT_FEATURE_vulkan AND TARGET Qt6::Gui)
add_subdirectory(vulkan)
endif()
qt_examples_build_end()