Don't crash when sending touch events.
[profile/ivi/qtwayland.git] / examples / qwindow-compositor / qwindow-compositor.pro
1 TEMPLATE = app
2 TARGET = qwindow-compositor
3 DEPENDPATH += .
4 INCLUDEPATH += .
5
6 # comment out the following to not use pkg-config in the pri files
7 CONFIG += use_pkgconfig
8
9 LIBS += -L ../../lib
10 #include (../../src/qt-compositor/qt-compositor.pri)
11
12 HEADERS += \
13     qopenglwindow.h \
14     qwindowcompositor.h \
15     textureblitter.h
16
17 # Input
18 SOURCES += main.cpp \
19     qopenglwindow.cpp \
20     qwindowcompositor.cpp \
21     textureblitter.cpp
22
23 CONFIG += qt warn_on debug  create_prl link_prl
24 OBJECTS_DIR = .obj/release-shared
25 MOC_DIR = .moc/release-shared
26
27 QT += gui gui-private core-private
28
29 QT += compositor
30
31 #  if you want to compile QtCompositor as part of the application
32 #  instead of linking to it, remove the QT += compositor and uncomment
33 #  the following line
34 #include(../../src/compositor/compositor.pri)
35
36 RESOURCES += qwindow-compositor.qrc
37
38 # install
39 target.path = $$[QT_INSTALL_EXAMPLES]/qtwayland/qwindow-compositor
40 sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS qwindow-compositor.pro
41 sources.path = $$[QT_INSTALL_EXAMPLES]/qtwayland/qwindow-compositor
42 INSTALLS += target sources