Added qml plugin exposing QProcess functionality.
[quick-widgets] / plugins / qmlprocess / qmlprocess.pro
diff --git a/plugins/qmlprocess/qmlprocess.pro b/plugins/qmlprocess/qmlprocess.pro
new file mode 100644 (file)
index 0000000..73e7fbd
--- /dev/null
@@ -0,0 +1,17 @@
+TEMPLATE = lib
+TARGET  = qmlprocess
+QT += declarative
+CONFIG += qt plugin
+
+TARGET = $$qtLibraryTarget($$TARGET)
+
+# Input
+SOURCES += \
+    qmlprocess.cpp \
+    ProcessObject.cpp
+
+OTHER_FILES=qmldir
+
+HEADERS += \
+    qmlprocess.h \
+    ProcessObject.h