a6b697ca13
This is in preparation to adding CBOR support. We don't need yet another dir for CBOR and placing it in src/corelib/json is just wrong. Change-Id: I9741f017961b410c910dfffd14ffb9d870340fa6 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io> Reviewed-by: Lars Knoll <lars.knoll@qt.io>
34 lines
767 B
Prolog
34 lines
767 B
Prolog
# This project is not actually used to build qmake, but to support development
|
|
# with Qt Creator. The real build system is made up by the Makefile templates
|
|
# and the configures.
|
|
|
|
option(host_build)
|
|
CONFIG += console bootstrap
|
|
CONFIG -= qt
|
|
DEFINES += \
|
|
QT_BUILD_QMAKE \
|
|
QT_NO_FOREACH \
|
|
PROEVALUATOR_FULL
|
|
|
|
VPATH += \
|
|
../src/corelib/global \
|
|
../src/corelib/tools \
|
|
../src/corelib/kernel \
|
|
../src/corelib/codecs \
|
|
../src/corelib/plugin \
|
|
../src/corelib/io \
|
|
../src/corelib/serialization \
|
|
../tools/shared/windows
|
|
|
|
INCLUDEPATH += . \
|
|
library \
|
|
generators \
|
|
generators/unix \
|
|
generators/win32 \
|
|
generators/mac \
|
|
../tools/shared
|
|
|
|
include(qmake.pri)
|
|
|
|
load(qt_app)
|