Update QtWayland to 5.0 beta1
[profile/ivi/qtwayland.git] / examples / qwindow-compositor / qwindow-compositor.pro
1 QT += gui gui-private core-private compositor
2
3 LIBS += -L ../../lib
4 #include (../../src/qt-compositor/qt-compositor.pri)
5
6 HEADERS += \
7     qopenglwindow.h \
8     qwindowcompositor.h \
9     textureblitter.h
10
11 SOURCES += main.cpp \
12     qopenglwindow.cpp \
13     qwindowcompositor.cpp \
14     textureblitter.cpp
15
16 # to make QtCompositor/... style includes working without installing
17 INCLUDEPATH += $$PWD/../../include
18
19 #  if you want to compile QtCompositor as part of the application
20 #  instead of linking to it, remove the QT += compositor and uncomment
21 #  the following line
22 #include(../../src/compositor/compositor.pri)
23
24 RESOURCES += qwindow-compositor.qrc
25
26 target.path = $$[QT_INSTALL_EXAMPLES]/qtwayland/qwindow-compositor
27 sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS qwindow-compositor.pro
28 sources.path = $$[QT_INSTALL_EXAMPLES]/qtwayland/qwindow-compositor
29 INSTALLS += target sources