summaryrefslogtreecommitdiffstats
path: root/examples/wayland/qml-compositor/qml-compositor.pro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/wayland/qml-compositor/qml-compositor.pro')
-rw-r--r--examples/wayland/qml-compositor/qml-compositor.pro22
1 files changed, 22 insertions, 0 deletions
diff --git a/examples/wayland/qml-compositor/qml-compositor.pro b/examples/wayland/qml-compositor/qml-compositor.pro
new file mode 100644
index 000000000..f908a2f2f
--- /dev/null
+++ b/examples/wayland/qml-compositor/qml-compositor.pro
@@ -0,0 +1,22 @@
+DEFINES += QT_COMPOSITOR_QUICK
+
+LIBS += -L ../../lib
+
+QT += quick qml
+QT += quick-private
+
+QT += compositor
+
+# 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)
+
+SOURCES += main.cpp
+
+OTHER_FILES = ContrastEffect.qml main.qml WindowChrome.qml WindowContainer.qml background.jpg closebutton.png compositor.js
+
+target.path = $$[QT_INSTALL_EXAMPLES]/wayland/qml-compositor
+sources.files = $$OTHER_FILES $$SOURCES $$HEADERS $$RESOURCES $$FORMS qml-compositor.pro
+sources.path = $$[QT_INSTALL_EXAMPLES]/wayland/qml-compositor
+INSTALLS += target sources