summaryrefslogtreecommitdiffstats
path: root/ogl-runtime.pro
blob: d5345cbad8dac544928d11d3e70f90dace52d7bb (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
requires(!ios)
requires(!qnx)
requires(!tvos)
requires(!watchos)
requires(!winrt)
requires(!wasm)

integrity {
    CHECK_INTEGRITY_DIR = $$(INTEGRITY_DIR)
}

ios|qnx|tvos|watchos|winrt|wasm|*-icc*|contains(CHECK_INTEGRITY_DIR, .*int1144$) {
    message("WARNING, target not supported by ogl-runtime")
    #Exclude non-working cross-compile targets, see:
    # QT3DS-3645 ogl-runtime doesn't compile on INTEGRITY_11_04 in CI
    # QT3DS-3647 ogl-runtime doesn't compile on TvOS_ANY in CI
    # QT3DS-3648 ogl-runtime doesn't compile on WatchOS_ANY in CI
    # QT3DS-3646 ogl-runtime doesn't compile on IOS_ANY in CI
    # QT3DS-3649 ogl-runtime doesn't compile on WinRT in CI
    # QT3DS-3650 ogl-runtime doesn't compile on WebAssembly in CI
    # QT3DS-3652 ogl-runtime doesn't compile on QNX in CI
    TEMPLATE = subdirs
    CONFIG += ordered
    SUBDIRS += src_dummy
} else {
    load(qt_parts)
    requires(qtHaveModule(opengl))
}