summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/platforms.pro
blob: 167602901cd41a8c08801dc3fa0b58294b941d82 (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
TEMPLATE=subdirs
CONFIG+=ordered
SUBDIRS += wayland_common

equals(QT_WAYLAND_GL_CONFIG, nogl) {
    SUBDIRS += qwayland-nogl
} else {
    config_wayland_egl {
        SUBDIRS += qwayland-egl
    }

    #The following integrations are only useful with QtCompositor
    contains(CONFIG, wayland-compositor) {
        config_brcm_egl {
            SUBDIRS += qwayland-brcm-egl
        }
        config_xcomposite {
            config_egl {
                SUBDIRS += qwayland-xcomposite-egl
            } else:config_glx {
                SUBDIRS += qwayland-xcomposite-glx
            }
        }
    }
}