2011-04-27 10:05:43 +00:00
|
|
|
TARGET = QtCore
|
|
|
|
QPRO_PWD = $$PWD
|
|
|
|
QT =
|
2011-04-01 10:47:28 +00:00
|
|
|
|
|
|
|
CONFIG += module
|
|
|
|
MODULE = core # not corelib, as per project file
|
|
|
|
MODULE_PRI = ../modules/qt_core.pri
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
DEFINES += QT_BUILD_CORE_LIB QT_NO_USING_NAMESPACE
|
|
|
|
win32-msvc*|win32-icc:QMAKE_LFLAGS += /BASE:0x67000000
|
|
|
|
irix-cc*:QMAKE_CXXFLAGS += -no_prelink -ptused
|
|
|
|
|
2011-05-18 13:30:27 +00:00
|
|
|
load(qt_module_config)
|
2011-05-10 13:15:15 +00:00
|
|
|
|
|
|
|
HEADERS += $$QT_SOURCE_TREE/src/corelib/qtcoreversion.h
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
include(animation/animation.pri)
|
|
|
|
include(arch/arch.pri)
|
|
|
|
include(concurrent/concurrent.pri)
|
|
|
|
include(global/global.pri)
|
|
|
|
include(thread/thread.pri)
|
|
|
|
include(tools/tools.pri)
|
|
|
|
include(io/io.pri)
|
|
|
|
include(plugin/plugin.pri)
|
|
|
|
include(kernel/kernel.pri)
|
|
|
|
include(codecs/codecs.pri)
|
|
|
|
include(statemachine/statemachine.pri)
|
|
|
|
include(xml/xml.pri)
|
|
|
|
|
|
|
|
!qpa:mac|darwin:LIBS_PRIVATE += -framework ApplicationServices
|
|
|
|
qpa {
|
|
|
|
contains(QT_CONFIG, coreservices) {
|
|
|
|
LIBS_PRIVATE += -framework CoreServices
|
|
|
|
}
|
|
|
|
} else:mac|darwin {
|
|
|
|
LIBS_PRIVATE += -framework CoreFoundation
|
|
|
|
}
|
|
|
|
mac:lib_bundle:DEFINES += QT_NO_DEBUG_PLUGIN_CHECK
|
|
|
|
win32:DEFINES-=QT_NO_CAST_TO_ASCII
|
|
|
|
|
|
|
|
QMAKE_LIBS += $$QMAKE_LIBS_CORE
|
|
|
|
|
|
|
|
QMAKE_DYNAMIC_LIST_FILE = $$PWD/QtCore.dynlist
|
|
|
|
|
|
|
|
contains(DEFINES,QT_EVAL):include(eval.pri)
|
|
|
|
|
|
|
|
symbian: {
|
|
|
|
TARGET.UID3=0x2001B2DC
|
|
|
|
|
|
|
|
# Problems using data exports from this DLL mean that we can't page it on releases that don't support
|
|
|
|
# data exports (currently that's any release before Symbian^3)
|
|
|
|
pagingBlock = "$${LITERAL_HASH}ifndef SYMBIAN_DLL_DATA_EXPORTS_SUPPORTED" \
|
|
|
|
"UNPAGED" \
|
|
|
|
"$${LITERAL_HASH}endif"
|
|
|
|
MMP_RULES += pagingBlock
|
|
|
|
}
|