summaryrefslogtreecommitdiffstats
path: root/examples/qwindow-compositor/qwindow-compositor.pro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qwindow-compositor/qwindow-compositor.pro')
-rw-r--r--examples/qwindow-compositor/qwindow-compositor.pro48
1 files changed, 48 insertions, 0 deletions
diff --git a/examples/qwindow-compositor/qwindow-compositor.pro b/examples/qwindow-compositor/qwindow-compositor.pro
new file mode 100644
index 0000000..5b160a8
--- /dev/null
+++ b/examples/qwindow-compositor/qwindow-compositor.pro
@@ -0,0 +1,48 @@
+TEMPLATE = app
+TARGET = qwindow-compositor
+DEPENDPATH += .
+INCLUDEPATH += .
+
+# comment out the following to not use pkg-config in the pri files
+CONFIG += use_pkgconfig
+
+DESTDIR=$$PWD/../../bin/
+
+include (../../src/qt-compositor/qt-compositor.pri)
+
+# Input
+SOURCES += main.cpp \
+ qopenglwindow.cpp \
+ surfacerenderer.cpp \
+ qwindowcompositor.cpp
+
+CONFIG += qt warn_on debug create_prl link_prl
+OBJECTS_DIR = .obj/release-shared
+MOC_DIR = .moc/release-shared
+
+# Touch support
+isEmpty(QT_SOURCE_TREE) {
+ QTBASE = $$[QT_INSTALL_DATA]
+} else {
+ QTBASE = $$QT_SOURCE_TREE
+}
+#TOUCHSCREEN_BASE = $$QTBASE/src/plugins/generic/touchscreen
+#SOURCES += $$TOUCHSCREEN_BASE/qtouchscreen.cpp
+#HEADERS += $$TOUCHSCREEN_BASE/qtouchscreen.h
+#INCLUDEPATH += $$TOUCHSCREEN_BASE
+#LIBS += -ludev -lmtdev
+QT += gui opengl
+
+target.path += $$[QT_INSTALL_BINS]
+INSTALLS += target
+
+HEADERS += \
+ qopenglwindow.h \
+ surfacerenderer.h \
+ qwindowcompositor.h
+
+
+
+
+
+