31 lines
882 B
INI
31 lines
882 B
INI
TEMPLATE = lib
|
|
CONFIG += qt plugin
|
|
QT += declarative
|
|
|
|
DESTDIR = com/nokia/TimeExample
|
|
TARGET = qmlqtimeexampleplugin
|
|
|
|
SOURCES += plugin.cpp
|
|
|
|
qdeclarativesources.files += \
|
|
com/nokia/TimeExample/qmldir \
|
|
com/nokia/TimeExample/center.png \
|
|
com/nokia/TimeExample/clock.png \
|
|
com/nokia/TimeExample/Clock.qml \
|
|
com/nokia/TimeExample/hour.png \
|
|
com/nokia/TimeExample/minute.png
|
|
|
|
qdeclarativesources.path += $$[QT_INSTALL_EXAMPLES]/qtdeclarative/declarative/plugins/com/nokia/TimeExample
|
|
|
|
sources.files += plugins.pro plugin.cpp plugins.qml README
|
|
sources.path += $$[QT_INSTALL_EXAMPLES]/qtdeclarative/declarative/plugins
|
|
target.path += $$[QT_INSTALL_EXAMPLES]/qtdeclarative/declarative/plugins/com/nokia/TimeExample
|
|
|
|
INSTALLS += qdeclarativesources sources target
|
|
|
|
symbian {
|
|
CONFIG += qt_example
|
|
TARGET.EPOCALLOWDLLDATA = 1
|
|
}
|
|
maemo5: CONFIG += qt_example
|