diff options
Diffstat (limited to 'examples/declarative/plugins/plugins.pro')
-rw-r--r-- | examples/declarative/plugins/plugins.pro | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/declarative/plugins/plugins.pro b/examples/declarative/plugins/plugins.pro new file mode 100644 index 0000000..4109eba --- /dev/null +++ b/examples/declarative/plugins/plugins.pro @@ -0,0 +1,14 @@ +TEMPLATE = lib +TARGET = qtimeexampleqmlplugin +CONFIG += qt plugin declarative + +SOURCES += plugin.cpp + +target.path += $$[QT_INSTALL_PLUGINS]/qmlmodules +sources.files += files/Clock.qml files/qmldir files/background.png files/center.png files/clock-night.png files/clock.png files/hour.png files/minute.png +sources.path += $$[QT_INSTALL_DATA]/qml/com/nokia/TimeExample +INSTALLS += target sources + + +VERSION=1.0.0 + |