summaryrefslogtreecommitdiffstats
path: root/examples/qml-compositor/qml-compositor.pro
blob: aea2fdce27a53812abdbb8101c395519b7b9395a (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
TEMPLATE = app
TARGET = qml-compositor
DEPENDPATH += .
INCLUDEPATH += .

# comment out the following to not use pkg-config in the pri files
CONFIG += use_pkgconfig

DESTDIR=$$PWD/../../bin/

LIBS += -L ../../lib

QT += declarative v8
QT += opengl

# to be removed once scenegraph gets rid of its widget dependencies
#QT += widgets widgets-private

!isEmpty(QT.core.MAJOR_VERSION):greaterThan(QT.core.MAJOR_VERSION, 4) {
    QT += core-private gui-private declarative-private opengl-private
}

include (../../src/qt-compositor/qt-compositor.pri)

target.path += $$[QT_INSTALL_BINS]
INSTALLS += target

# Input
SOURCES += main.cpp
RESOURCES = qml-compositor.qrc

CONFIG += qt warn_on debug  create_prl link_prl
OBJECTS_DIR = .obj/release-shared
MOC_DIR = .moc/release-shared