1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
TEMPLATE = lib
CONFIG += plugin
QT += declarative
DESTDIR = ImageProviderCore
TARGET = qmlimageproviderplugin
SOURCES += imageprovider.cpp
target.path = $$[QT_INSTALL_EXAMPLES]/declarative/cppextensions/imageprovider/ImageProviderCore
qml.files = imageprovider-example.qml
qml.path = $$[QT_INSTALL_EXAMPLES]/declarative/cppextensions/imageprovider
qml2.files = ImageProviderCore/qmldir
qml2.path = $$[QT_INSTALL_EXAMPLES]/declarative/cppextensions/imageprovider/ImageProviderCore
INSTALLS = qml qml2 target
|