Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
43 lines
1013 B
Prolog
43 lines
1013 B
Prolog
TEMPLATE = app
|
|
CONFIG += qt uic console
|
|
DESTDIR = ../../bin
|
|
|
|
QT += declarative
|
|
|
|
TARGET = qmlplugindump
|
|
|
|
SOURCES += \
|
|
main.cpp \
|
|
qmlstreamwriter.cpp
|
|
|
|
HEADERS += \
|
|
qmlstreamwriter.h
|
|
|
|
mac {
|
|
# Prevent qmlplugindump from popping up in the dock when launched.
|
|
# We embed the Info.plist file, so the application doesn't need to
|
|
# be a bundle.
|
|
QMAKE_LFLAGS += -sectcreate __TEXT __info_plist \"$$PWD/Info.plist\"
|
|
CONFIG -= app_bundle
|
|
}
|
|
|
|
# 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
|