f3331e14e6
rename MODULE_PROFILE_DIR to MODULE_BASE_INDIR. force MODULE_BASE_OUTDIR to be always the shadow of the above. rename MODULE_BASE_DIR to MODULE_SYNCQT_DIR (the former is still recognized for backwards compat with webkit). the idea behind these changes is making the variable names and override possibilities reflect their actual use. Change-Id: Ica4062d7231a0ce13241670e0d0f43e6b1b97160 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
30 lines
967 B
Plaintext
30 lines
967 B
Plaintext
#
|
|
# 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.
|
|
#
|
|
|
|
# Find the module's source root dir.
|
|
isEmpty(_QMAKE_CONF_): error("Project has no top-level .qmake.conf file.")
|
|
MODULE_BASE_INDIR = $$dirname(_QMAKE_CONF_)
|
|
MODULE_BASE_OUTDIR = $$shadowed($$MODULE_BASE_INDIR)
|
|
!isEmpty(MODULE_BASE_DIR): MODULE_SYNCQT_DIR = $$MODULE_BASE_DIR # compat for webkit
|
|
isEmpty(MODULE_SYNCQT_DIR): MODULE_SYNCQT_DIR = $$MODULE_BASE_INDIR
|
|
isEmpty(MODULE_QMAKE_OUTDIR): MODULE_QMAKE_OUTDIR = $$MODULE_BASE_OUTDIR
|
|
|
|
exists($$MODULE_BASE_INDIR/.git): \
|
|
CONFIG += git_build
|
|
|
|
!prefix_build {
|
|
QTDIR = $$[QT_HOST_PREFIX]
|
|
# Permit modules to enforce being built outside QTDIR ...
|
|
!force_independent: MODULE_BASE_OUTDIR = $$QTDIR
|
|
# ... though this sort of breaks the idea.
|
|
MODULE_QMAKE_OUTDIR = $$QTDIR
|
|
}
|