summaryrefslogtreecommitdiff
path: root/share/qtcreator/templates/wizards/qml-extension/project.pro
diff options
context:
space:
mode:
Diffstat (limited to 'share/qtcreator/templates/wizards/qml-extension/project.pro')
-rw-r--r--share/qtcreator/templates/wizards/qml-extension/project.pro17
1 files changed, 17 insertions, 0 deletions
diff --git a/share/qtcreator/templates/wizards/qml-extension/project.pro b/share/qtcreator/templates/wizards/qml-extension/project.pro
new file mode 100644
index 0000000000..6e3cb29342
--- /dev/null
+++ b/share/qtcreator/templates/wizards/qml-extension/project.pro
@@ -0,0 +1,17 @@
+TEMPLATE = lib
+TARGET = %ProjectName%
+QT += declarative
+CONFIG += qt plugin
+
+TARGET = $$qtLibraryTarget($$TARGET)
+
+# Input
+SOURCES += \
+ %ProjectName%.cpp \
+ %ObjectName%.cpp
+
+OTHER_FILES=qmldir
+
+HEADERS += \
+ %ProjectName%.h \
+ %ObjectName%.h