forked from qt-creator/qt-creator
QT_USE_FAST_CONCATENATION doesn't do anything nowadays. Using QT_USE_QSTRINGBUILDER is the same as QT_USE_FAST_OPERATOR_PLUS for QStrings and enables more QStringBuilder use for QByteArrays. Change-Id: Ibd297817c50d86661d47822799f989447249af1b Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
50 lines
1.0 KiB
Prolog
50 lines
1.0 KiB
Prolog
VPATH += ../../../src/shared/proparser
|
|
INCLUDEPATH += ../../../src/shared/proparser
|
|
DEPENDPATH += ../../../src/shared/proparser
|
|
|
|
TEMPLATE = app
|
|
TARGET = testreader
|
|
|
|
QT -= gui
|
|
|
|
CONFIG += qt warn_on console
|
|
CONFIG -= app_bundle
|
|
|
|
build_all:!build_pass {
|
|
CONFIG -= build_all
|
|
CONFIG += release
|
|
}
|
|
|
|
SOURCES += \
|
|
main.cpp \
|
|
qmakeglobals.cpp \
|
|
qmakeparser.cpp \
|
|
qmakeevaluator.cpp \
|
|
profileevaluator.cpp \
|
|
qmakebuiltins.cpp \
|
|
proitems.cpp \
|
|
qmakevfs.cpp \
|
|
ioutils.cpp \
|
|
registry.cpp
|
|
|
|
HEADERS += \
|
|
qmake_global.h \
|
|
qmakeglobals.h \
|
|
qmakeparser.h \
|
|
qmakeevaluator.h \
|
|
qmakeevaluator_p.h \
|
|
profileevaluator.h \
|
|
proitems.h \
|
|
qmakevfs.h \
|
|
ioutils.h \
|
|
registry_p.h
|
|
|
|
RESOURCES += proparser.qrc
|
|
DEFINES += QMAKE_BUILTIN_PRFS
|
|
|
|
DEFINES += QT_NO_CAST_TO_ASCII QT_RESTRICTED_CAST_FROM_ASCII
|
|
DEFINES += QT_USE_QSTRINGBUILDER
|
|
DEFINES += PROEVALUATOR_FULL PROEVALUATOR_CUMULATIVE PROEVALUATOR_INIT_PROPS
|
|
|
|
win32: LIBS *= -ladvapi32
|