blob: e9fcdc7f248e8fcdf3549d9f9e461496ff08fb72 (
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 = ../../bin
QT += declarative
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
|