2013-06-12 17:38:15 +00:00
|
|
|
# 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.
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-02-03 21:13:12 +00:00
|
|
|
option(host_build)
|
2011-04-27 10:05:43 +00:00
|
|
|
CONFIG += console bootstrap
|
2013-10-31 15:39:55 +00:00
|
|
|
CONFIG -= qt
|
|
|
|
DEFINES += \
|
|
|
|
QT_BUILD_QMAKE \
|
2012-08-28 17:24:30 +00:00
|
|
|
PROEVALUATOR_FULL
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2013-10-31 15:39:55 +00:00
|
|
|
VPATH += \
|
|
|
|
../src/corelib/global \
|
|
|
|
../src/corelib/tools \
|
|
|
|
../src/corelib/kernel \
|
|
|
|
../src/corelib/codecs \
|
|
|
|
../src/corelib/plugin \
|
|
|
|
../src/corelib/xml \
|
|
|
|
../src/corelib/io \
|
|
|
|
../src/corelib/json \
|
|
|
|
../tools/shared/windows
|
2012-07-26 17:47:33 +00:00
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
INCLUDEPATH += . \
|
2012-09-06 10:21:38 +00:00
|
|
|
library \
|
2011-04-27 10:05:43 +00:00
|
|
|
generators \
|
|
|
|
generators/unix \
|
|
|
|
generators/win32 \
|
|
|
|
generators/mac \
|
2011-07-11 13:24:55 +00:00
|
|
|
generators/integrity \
|
2013-10-31 15:39:55 +00:00
|
|
|
../tools/shared
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
include(qmake.pri)
|
2013-10-31 15:39:55 +00:00
|
|
|
|
|
|
|
load(qt_app)
|