aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/painteditem/textballoons/textballoons.pro
blob: 3148fd20e64894ee9d6fd23fbf7abec103fe99b5 (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 \
    textballoon.h

SOURCES += 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