aboutsummaryrefslogtreecommitdiffstats
path: root/examples/customruntime/customruntime.pro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/customruntime/customruntime.pro')
-rw-r--r--examples/customruntime/customruntime.pro23
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/customruntime/customruntime.pro b/examples/customruntime/customruntime.pro
new file mode 100644
index 0000000..90920fb
--- /dev/null
+++ b/examples/customruntime/customruntime.pro
@@ -0,0 +1,23 @@
+TEMPLATE = app
+TARGET = customruntime
+CONFIG += c++11
+
+macx*: CONFIG -= app_bundle
+QT *= quick
+
+include(../../src/lib.pri)
+
+SOURCES += main.cpp
+
+target.path = $$EXAMPLES_PREFIX/customruntime
+INSTALLS += target
+
+qml.files = qml/*.qml
+qml.path = $$target.path/qml
+INSTALLS += qml
+OTHER_FILES += $$qml.files
+
+icon.files = icon.png
+icon.path = $$target.path
+INSTALLS += icon
+OTHER_FILES += $$icon.files