summaryrefslogtreecommitdiffstats
path: root/src/platformsupport/legacy.pro
blob: 042f16301d61c8a034fd2d5afcb97b5e753ab3a9 (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
TARGET     = QtPlatformSupport
MODULE     = platformsupport

QT_FOR_CONFIG += gui-private
CONFIG += static internal_module

SOURCES += legacy.cpp

mods = \
    accessibility \
    cgl \
    clipboard \
    devicediscovery \
    egl \
    eventdispatcher \
    fb \
    fontdatabase \
    glx \
    graphics \
    input \
    linuxaccessibility \
    platformcompositor \
    service \
    theme

for (mod, mods) {
    mod = $${mod}_support-private
    qtHaveModule($$mod): \
        QT += $$mod
}

load(qt_module)