2012-12-11 21:08:15 +00:00
|
|
|
#
|
|
|
|
# W A R N I N G
|
|
|
|
# -------------
|
|
|
|
#
|
|
|
|
# This file is not part of the Qt API. It exists purely as an
|
|
|
|
# implementation detail. It may change from version to version
|
|
|
|
# without notice, or even be removed.
|
|
|
|
#
|
|
|
|
# We mean it.
|
|
|
|
#
|
|
|
|
|
2013-04-26 12:15:34 +00:00
|
|
|
load(qt_app)
|
2012-10-26 17:59:09 +00:00
|
|
|
|
2012-12-14 18:17:20 +00:00
|
|
|
CONFIG += console
|
2012-11-15 13:49:19 +00:00
|
|
|
|
2012-07-03 17:26:36 +00:00
|
|
|
# If we are doing a prefix build, create a "module" pri which enables
|
|
|
|
# qtPrepareTool() to work with the non-installed build.
|
2013-03-08 21:23:30 +00:00
|
|
|
# Non-bootstrapped tools always need this because of the environment setup.
|
2013-03-21 07:18:12 +00:00
|
|
|
!build_pass:if(!host_build|!force_bootstrap|force_independent) {
|
2012-07-03 17:26:36 +00:00
|
|
|
isEmpty(MODULE):MODULE = $$TARGET
|
|
|
|
|
2013-06-13 15:28:52 +00:00
|
|
|
!host_build|!force_bootstrap: MODULE_DEPENDS = $$replace(QT, -private$, )
|
2012-07-03 17:26:36 +00:00
|
|
|
|
2012-10-23 20:15:43 +00:00
|
|
|
load(qt_build_paths)
|
2012-07-03 17:26:36 +00:00
|
|
|
|
2012-07-10 18:53:52 +00:00
|
|
|
load(resolve_target)
|
|
|
|
|
2012-10-24 13:03:49 +00:00
|
|
|
TOOL_PRI = $$MODULE_QMAKE_OUTDIR/mkspecs/modules/qt_tool_$${MODULE}.pri
|
2012-07-03 17:26:36 +00:00
|
|
|
|
2013-06-13 15:28:52 +00:00
|
|
|
TOOL_PRI_CONT = \
|
|
|
|
"QT_TOOL.$${MODULE}.binary = $$QMAKE_RESOLVED_TARGET" \
|
|
|
|
"QT_TOOL.$${MODULE}.depends =$$join(MODULE_DEPENDS, " ", " ")"
|
2012-07-03 17:26:36 +00:00
|
|
|
write_file($$TOOL_PRI, TOOL_PRI_CONT)|error("Aborting.")
|
|
|
|
|
|
|
|
# Then, inject the new tool into the current cache state
|
|
|
|
!contains(QMAKE_INTERNAL_INCLUDED_FILES, $$TOOL_PRI) { # before the actual include()!
|
|
|
|
added = $$TOOL_PRI
|
|
|
|
cache(QMAKE_INTERNAL_INCLUDED_FILES, add transient, added)
|
|
|
|
unset(added)
|
|
|
|
}
|
|
|
|
include($$TOOL_PRI)
|
2013-06-13 15:28:52 +00:00
|
|
|
for(var, $$list(binary depends)): \
|
|
|
|
cache(QT_TOOL.$${MODULE}.$$var, transient)
|
2012-07-03 17:26:36 +00:00
|
|
|
|
|
|
|
}
|