aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/painteditem/textballoons/textballoons.pro
blob: 186581f9d51107bd5a30da6a7dc6f8c4e9ae90e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
TEMPLATE = lib
CONFIG += qt plugin
QT += declarative

TARGET = qmltextballoonplugin

HEADERS += textballoonplugin/plugin.h \
    textballoonplugin/textballoon.h

SOURCES += textballoonplugin/textballoon.cpp

DESTDIR = textballoonplugin

qdeclarativesources.files += \
    textballoonplugin/qmldir

qdeclarativesources.path += $$[QT_INSTALL_EXAMPLES]/qtdeclarative/declarative/painteditem/textballoons/textballoonplugin
 
sources.files = textballoons.qml
sources.path += $$[QT_INSTALL_EXAMPLES]/qtdeclarative/declarative/painteditem/textballoons
target.path += $$[QT_INSTALL_EXAMPLES]/qtdeclarative/declarative/painteditem/textballoons/textballoonplugin

INSTALLS = qdeclarativesources sources target