blob: 86dbcca4809a1ebb56d440442ea538060a4b039d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
TEMPLATE = lib
TARGET = imageprovider
QT += declarative
CONFIG += qt plugin
TARGET = $$qtLibraryTarget($$TARGET)
DESTDIR = ImageProviderCore
# Input
SOURCES += imageprovider.cpp
sources.files = $$SOURCES imageprovider.qml imageprovider.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/declarative/imageprovider
target.path = $$[QT_INSTALL_EXAMPLES]/declarative/imageprovider/ImageProviderCore
ImageProviderCore_sources.files = \
ImageProviderCore/qmldir
ImageProviderCore_sources.path = $$[QT_INSTALL_EXAMPLES]/declarative/imageprovider/ImageProviderCore
INSTALLS = sources ImageProviderCore_sources target
|