summaryrefslogtreecommitdiff
path: root/tools/pngdumper/pngdumper.pro
blob: d29e50f991c77da26412abe1fb7bafa4d40acb63 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
TEMPLATE = lib
TARGET = pngdumper
QT += core quick
CONFIG += plugin

TARGET = $$qtLibraryTarget($$TARGET)
uri = org.qtproject.pngdumper

# Input
SOURCES += \
    pngdumper_plugin.cpp \
    pngdumper.cpp

HEADERS += \
    pngdumper_plugin.h \
    pngdumper.h

OTHER_FILES = qmldir \
    pngdumper.qml \
    ItemModel.qml

!equals(_PRO_FILE_PWD_, $$OUT_PWD) {
    cpqmldir.files = qmldir
    cpqmldir.path = $$OUT_PWD
    COPIES += cpqmldir
}

qmldir.files = qmldir
unix {
    maemo5 | !isEmpty(MEEGO_VERSION_MAJOR) {
        installPath = /usr/lib/qt4/imports/$$replace(uri, \\., /)
    } else {
        installPath = $$[QT_INSTALL_IMPORTS]/$$replace(uri, \\., /)
    }
    qmldir.path = $$installPath
    target.path = $$installPath
    INSTALLS += target qmldir
}