summaryrefslogtreecommitdiffstats
path: root/examples/wayland/qwindow-compositor/qwindow-compositor.pro
blob: ad222860ed450bf59de2e18ad8a1c5ec25002690 (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
QT += gui gui-private core-private compositor

LIBS += -L ../../lib
#include (../../src/qt-compositor/qt-compositor.pri)

HEADERS += \
    compositorwindow.h \
    qwindowcompositor.h \
    textureblitter.h

SOURCES += main.cpp \
    compositorwindow.cpp \
    qwindowcompositor.cpp \
    textureblitter.cpp

# to make QtCompositor/... style includes working without installing
INCLUDEPATH += $$PWD/../../include

#  if you want to compile QtCompositor as part of the application
#  instead of linking to it, remove the QT += compositor and uncomment
#  the following line
#include(../../src/compositor/compositor.pri)

RESOURCES += qwindow-compositor.qrc

target.path = $$[QT_INSTALL_EXAMPLES]/wayland/qwindow-compositor
INSTALLS += target