summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/examples-common/examples-common.pri
blob: e50e39eddbb9664149b11a01bfe8f2245a0b26c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
QT += 3dcore 3drender 3dinput 3dlogic qml

INCLUDEPATH += $$PWD

win32 {
    build_pass {
        CONFIG(debug, debug|release) {
            common_static_lib = $$OUT_PWD/../examples-common/debug/$${QMAKE_PREFIX_STATICLIB}examples-common.$${QMAKE_EXTENSION_STATICLIB}
        } else {
            common_static_lib = $$OUT_PWD/../examples-common/release/$${QMAKE_PREFIX_STATICLIB}examples-common.$${QMAKE_EXTENSION_STATICLIB}
        }
    }
} else {
    common_static_lib = $$OUT_PWD/../examples-common/$${QMAKE_PREFIX_STATICLIB}examples-common.$${QMAKE_EXTENSION_STATICLIB}
}

LIBS += $$common_static_lib
PRE_TARGETDEPS += $$common_static_lib

RESOURCES += $$OUT_PWD/../examples-common/examples-common.qrc