aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml/painteditem/textballoons/textballoons.pro
blob: 9bc0f3c04a1fa763bae82ec59f096dcb4fda503b (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 += qml quick

TARGET = qmltextballoonplugin

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

SOURCES += textballoon.cpp

DESTDIR = TextBalloonPlugin

qqmlsources.files += \
    TextBalloonPlugin/qmldir

qqmlsources.path += $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/painteditem/textballoons/TextBalloonPlugin
 
sources.files = textballoons.qml
sources.path += $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/painteditem/textballoons
target.path += $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/painteditem/textballoons/TextBalloonPlugin

INSTALLS = qqmlsources sources target