2012-02-24 18:21:51 +00:00
|
|
|
CONFIG *= thread
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#handle defines
|
|
|
|
win32 {
|
2012-05-30 10:09:00 +00:00
|
|
|
contains(QT_CONFIG, shared) {
|
|
|
|
# this variable is read by qmake in qmake/generators/win32/msvc_vcproj.cpp
|
|
|
|
# function VcprojGenerator::initDeploymentTool(), which contains some hardcoded
|
|
|
|
# library names (the ones that were static in Qt 4)
|
|
|
|
# it probably doesn't work anymore and should not be in this file
|
|
|
|
QMAKE_QT_DLL = 1
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
CONFIG(release, debug|release):DEFINES += QT_NO_DEBUG
|
2011-11-11 10:21:52 +00:00
|
|
|
contains(QT_CONFIG, force_asserts):DEFINES += QT_FORCE_ASSERTS
|
2011-04-27 10:05:43 +00:00
|
|
|
no_keywords:DEFINES += QT_NO_KEYWORDS
|
|
|
|
plugin { #Qt plugins
|
|
|
|
static:DEFINES += QT_STATICPLUGIN
|
|
|
|
DEFINES += QT_PLUGIN
|
|
|
|
|
|
|
|
# Triggers both on Qt being configured with -arch boundschecker,
|
|
|
|
# and if you qmake CONFIG+=boundchecker on your plugin project
|
|
|
|
boundschecker|contains(QT_CONFIG,boundschecker) {
|
|
|
|
# This option is added for plugins when Qt is configured for Boundschecker,
|
|
|
|
# since we want Boundschecker to not instrument the qt_plugin_query_verification_data
|
|
|
|
# function, as we call that function without the plugin's dependent DLLs, thus
|
|
|
|
# Boundscheckers instrumentation will fail. The function only returns a const char *,
|
|
|
|
# so no instrumentation is really needed on that function anyways.
|
|
|
|
QMAKE_CFLAGS += /nmignore:*:qt_plugin_query_verification_data
|
|
|
|
QMAKE_CXXFLAGS += /nmignore:*:qt_plugin_query_verification_data
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-20 08:05:29 +00:00
|
|
|
qtestlib {
|
|
|
|
warning("CONFIG+=qtestlib is deprecated. Use QT+=testlib instead.")
|
|
|
|
QT += testlib
|
|
|
|
}
|
|
|
|
qdbus {
|
|
|
|
warning("CONFIG+=qdbus is deprecated. Use QT+=dbus instead.")
|
|
|
|
QT += dbus
|
|
|
|
}
|
|
|
|
help {
|
|
|
|
warning("CONFIG+=help is deprecated. Use QT+=help instead.")
|
|
|
|
QT += help-private # sic!
|
|
|
|
}
|
|
|
|
designer {
|
|
|
|
warning("CONFIG+=designer is deprecated. Use QT+=designer instead.")
|
|
|
|
QT += designer
|
|
|
|
}
|
|
|
|
uitools {
|
|
|
|
warning("CONFIG+=uitools is deprecated. Use QT+=uitools instead.")
|
|
|
|
QT += uitools
|
|
|
|
}
|
|
|
|
qaxcontainer {
|
|
|
|
warning("CONFIG+=qaxcontainer is deprecated. Use QT+=axcontainer instead.")
|
|
|
|
QT += axcontainer
|
|
|
|
}
|
|
|
|
qaxserver {
|
|
|
|
warning("CONFIG+=qaxserver is deprecated. Use QT+=axserver instead.")
|
|
|
|
QT += axserver
|
|
|
|
}
|
2012-12-10 13:56:29 +00:00
|
|
|
|
2012-12-20 08:05:29 +00:00
|
|
|
unset(using_privates)
|
|
|
|
qtAddModules(QT, LIBS)
|
|
|
|
qtAddModules(QT_PRIVATE, LIBS_PRIVATE)
|
|
|
|
!isEmpty(using_privates):!auto_use_privates:!no_private_qt_headers_warning:if(!debug_and_release|!build_pass) {
|
|
|
|
message("This project is using private headers and will therefore be tied to this specific Qt module build version.")
|
|
|
|
message("Running this project against other versions of the Qt modules may crash at any arbitrary point.")
|
|
|
|
message("This is not a bug, but a result of using Qt internals. You have been warned!")
|
|
|
|
}
|
2013-02-01 16:30:31 +00:00
|
|
|
qtAddRpathLink($$QT $$QT_PRIVATE)
|
2012-12-20 08:05:29 +00:00
|
|
|
|
|
|
|
wince*:static:gui {
|
|
|
|
QTLIB += qmenu_wce.res
|
|
|
|
}
|
|
|
|
|
|
|
|
QT_PLUGIN_VERIFY = DEPLOYMENT_PLUGIN
|
2012-12-10 13:56:29 +00:00
|
|
|
contains(QT_CONFIG, static) {
|
|
|
|
QT_PLUGIN_VERIFY += QTPLUGIN
|
2012-12-20 08:05:29 +00:00
|
|
|
force_import_plugins|contains(TEMPLATE, .*app) {
|
2012-12-20 08:07:20 +00:00
|
|
|
needs_qpa_plugin:import_qpa_plugin {
|
2012-12-11 14:02:45 +00:00
|
|
|
qpa_minimal_plugin: \
|
|
|
|
QTPLUGIN += qminimal
|
|
|
|
else: \
|
|
|
|
QTPLUGIN += $$QT_DEFAULT_QPA_PLUGIN
|
2012-12-10 14:11:47 +00:00
|
|
|
}
|
2012-12-10 13:56:29 +00:00
|
|
|
import_plugins:!isEmpty(QTPLUGIN) {
|
|
|
|
IMPORT_FILE_CONT = \
|
|
|
|
"// This file is autogenerated by qmake. It imports static plugin classes for" \
|
|
|
|
"// static plugins specified using QTPLUGIN and QT_PLUGIN_CLASS.<plugin> variables." \
|
|
|
|
"$${LITERAL_HASH}include <QtPlugin>"
|
|
|
|
for(IMPORT_PLUG, $$list($$unique(QTPLUGIN))) {
|
|
|
|
PLUG_CLASS = $$eval(QT_PLUGIN.$${IMPORT_PLUG}.CLASS_NAME)
|
|
|
|
!isEmpty(PLUG_CLASS): \
|
|
|
|
IMPORT_FILE_CONT += "Q_IMPORT_PLUGIN($$PLUG_CLASS)"
|
|
|
|
else: \
|
|
|
|
warning("Plugin class name could not be determined for $$IMPORT_PLUG plugin.")
|
|
|
|
}
|
|
|
|
IMPORT_CPP = $$OUT_PWD/$$lower($$basename(TARGET))_plugin_import.cpp
|
|
|
|
write_file($$IMPORT_CPP, IMPORT_FILE_CONT)|error("Aborting.")
|
|
|
|
SOURCES += $$IMPORT_CPP
|
|
|
|
QMAKE_DISTCLEAN += $$IMPORT_CPP
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
for(QT_CURRENT_VERIFY, $$list($$QT_PLUGIN_VERIFY)) {
|
|
|
|
for(QTPLUG, $$list($$lower($$unique($$QT_CURRENT_VERIFY)))) {
|
|
|
|
# Check if the plugin is known to Qt. We can use this to determine
|
|
|
|
# the plugin path. Unknown plugins must rely on the default link path.
|
2012-10-24 13:02:08 +00:00
|
|
|
QT_PLUGINPATH = $$eval(QT_PLUGIN.$${QTPLUG}.TYPE)
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
# Generate the plugin linker line
|
|
|
|
target_qt:isEqual(TARGET, QTPLUG) {
|
|
|
|
warning($$TARGET cannot have a QTPLUGIN of $$QTPLUG)
|
|
|
|
} else {
|
2012-09-20 10:17:30 +00:00
|
|
|
QT_LINKAGE = -l$${QTPLUG}$$qtPlatformTargetSuffix()
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Only link against plugin in static builds
|
|
|
|
isEqual(QT_CURRENT_VERIFY, QTPLUGIN): {
|
2012-03-22 11:40:00 +00:00
|
|
|
!isEmpty(QT_PLUGINPATH): LIBS *= -L$$[QT_INSTALL_PLUGINS/get]/$$QT_PLUGINPATH
|
2011-04-27 10:05:43 +00:00
|
|
|
LIBS += $$QT_LINKAGE
|
|
|
|
# if the plugin is linked statically there is no need to deploy it
|
|
|
|
DEPLOYMENT_PLUGIN -= $$QT_CURRENT_VERIFY
|
|
|
|
}
|
|
|
|
isEqual(QT_CURRENT_VERIFY, DEPLOYMENT_PLUGIN):shared:wince*: {
|
|
|
|
QT_ITEM =
|
|
|
|
CONFIG(debug, debug|release): QT_ITEM = $${QTPLUG}d4.dll
|
|
|
|
else: QT_ITEM = $${QTPLUG}4.dll
|
|
|
|
|
2012-03-22 11:40:00 +00:00
|
|
|
eval(qt_additional_plugin_$${QTPLUG}.files = $$[QT_INSTALL_PLUGINS/get]/$${QT_PLUGINPATH}/$${QT_ITEM})
|
2011-04-27 10:05:43 +00:00
|
|
|
eval(qt_additional_plugin_$${QTPLUG}.path = $${QT_PLUGINPATH})
|
|
|
|
|
|
|
|
DEPLOYMENT *= qt_additional_plugin_$${QTPLUG}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|