summaryrefslogtreecommitdiffstats
path: root/examples/CMakeLists.txt
blob: b4738284158af99e4350d66a7f4b6062f30bfabb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# special case begin
qt_examples_build_begin()

# special case end

# Generated from examples.pro.

add_subdirectory(corelib)
add_subdirectory(embedded)
add_subdirectory(qpa)

if(TARGET Qt::DBus)
    add_subdirectory(dbus)
endif()

if(TARGET Qt::Network)
    add_subdirectory(network)
endif()

if(TARGET Qt::Test)
    add_subdirectory(qtestlib)
endif()

if(TARGET Qt::Concurrent)
    add_subdirectory(qtconcurrent)
endif()

if(TARGET Qt::Sql)
    add_subdirectory(sql)
endif()

if(TARGET Qt::Widgets)
    add_subdirectory(widgets)
endif()

if(TARGET Qt::Xml)
    add_subdirectory(xml)
endif()

if(TARGET Qt::Gui)
    add_subdirectory(gui)

    if(QT_FEATURE_opengl)
        add_subdirectory(opengl)
    endif()

    if(QT_FEATURE_vulkan)
        add_subdirectory(vulkan)
    endif()
endif()

# special case begin
qt_examples_build_end()
# special case end