aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/customitems/painteditem/painteditem.pro
blob: 846ad6307d1ada931e6db1b0c5e8be56bf8002e4 (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
TEMPLATE = lib
CONFIG += qt plugin
QT += qml quick

TARGET = qmltextballoonplugin

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

SOURCES += textballoon.cpp

OTHER_FILES += textballoon.json

DESTDIR = TextBalloonPlugin

INSTALL_PATH = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/customitems/painteditem/
qdeclarativesources.files += \
    TextBalloonPlugin/qmldir TextBalloonPlugin/plugin.h
qdeclarativesources.path += $$INSTALL_PATH/TextBalloonPlugin
sources.files = textballoons.qml $$SOURCES textballoon.h $$OTHER_FILES painteditem.pro
sources.path = $$INSTALL_PATH
target.path = $$INSTALL_PATH/TextBalloonPlugin

INSTALLS = qdeclarativesources sources target