aboutsummaryrefslogtreecommitdiffstats
path: root/tools/qmlplugindump/qmlplugindump.pro
blob: a327bb68d9b14a3983b874863ef9cf2d7fc7a10b (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
TEMPLATE = app
CONFIG += qt uic console
DESTDIR = $$QT.declarative.bins

QT += declarative declarative-private quick-private qtquick1 core-private widgets

TARGET = qmlplugindump

SOURCES += \
    main.cpp \
    qmlstreamwriter.cpp

HEADERS += \
    qmlstreamwriter.h

OTHER_FILES += Info.plist
macx: QMAKE_INFO_PLIST = Info.plist

# Build debug and release versions of the tool on Windows -
# if debug and release versions of Qt have been built.
!build_pass:win32 {
    CONFIG -= debug release debug_and_release build_all

    contains(QT_CONFIG,debug):contains(QT_CONFIG,release) {
        CONFIG += debug_and_release build_all
    } else {
        contains(QT_CONFIG,debug): CONFIG += debug
        contains(QT_CONFIG,release): CONFIG += release
    }
}

CONFIG(debug, debug|release) {
    win32: TARGET = $$join(TARGET,,,d)
}

target.path = $$[QT_INSTALL_BINS]
INSTALLS += target