blob: 945a3014a541f2a3c640de4549cccbd06722365f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
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
symbian:{
TARGET.EPOCALLOWDLLDATA=1
}
INSTALLS = sources ImageProviderCore_sources target
|