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-03-19 16:35:35 +00:00
|
|
|
# Ensure that each module has a .qmake.cache when properly qmake'd.
|
|
|
|
cache()
|
|
|
|
|
2012-07-03 19:26:36 +00:00
|
|
|
load(qt_build_config)
|
|
|
|
|
|
|
|
TEMPLATE = subdirs
|
|
|
|
|
2012-11-08 10:29:12 +00:00
|
|
|
bp = $$eval($$upper($$TARGET)_BUILD_PARTS)
|
|
|
|
!isEmpty(bp): QT_BUILD_PARTS = $$bp
|
|
|
|
|
2012-07-03 19:26:36 +00:00
|
|
|
sub_src.subdir = src
|
|
|
|
sub_src.target = sub-src
|
|
|
|
SUBDIRS = sub_src
|
|
|
|
|
2012-07-05 23:00:08 +00:00
|
|
|
exists($$_PRO_FILE_PWD_/tools/tools.pro) {
|
2012-07-03 19:26:36 +00:00
|
|
|
sub_tools.subdir = tools
|
|
|
|
sub_tools.target = sub-tools
|
|
|
|
sub_tools.depends = sub_src
|
|
|
|
!contains(QT_BUILD_PARTS, tools): sub_tools.CONFIG = no_default_target no_default_install
|
|
|
|
SUBDIRS += sub_tools
|
|
|
|
}
|
|
|
|
|
2012-07-05 23:00:08 +00:00
|
|
|
exists($$_PRO_FILE_PWD_/examples/examples.pro) {
|
2012-07-03 19:26:36 +00:00
|
|
|
sub_examples.subdir = examples
|
|
|
|
sub_examples.target = sub-examples
|
|
|
|
sub_examples.depends = sub_src
|
2012-11-30 13:42:52 +00:00
|
|
|
examples_need_tools: sub_examples.depends += sub_tools
|
2012-07-03 19:26:36 +00:00
|
|
|
!contains(QT_BUILD_PARTS, examples): sub_examples.CONFIG = no_default_target no_default_install
|
|
|
|
SUBDIRS += sub_examples
|
|
|
|
}
|
|
|
|
|
|
|
|
# Some modules still have these
|
2012-07-05 23:00:08 +00:00
|
|
|
exists($$_PRO_FILE_PWD_/demos/demos.pro) {
|
2012-07-05 23:03:28 +00:00
|
|
|
sub_demos.subdir = demos
|
|
|
|
sub_demos.target = sub-demos
|
2012-07-03 19:26:36 +00:00
|
|
|
sub_demos.depends = sub_src
|
2012-11-30 13:42:52 +00:00
|
|
|
examples_need_tools: sub_demos.depends += sub_tools
|
2012-07-03 19:26:36 +00:00
|
|
|
!contains(QT_BUILD_PARTS, examples): sub_demos.CONFIG = no_default_target no_default_install
|
|
|
|
SUBDIRS += sub_demos
|
|
|
|
}
|
|
|
|
|
2012-07-05 23:00:08 +00:00
|
|
|
exists($$_PRO_FILE_PWD_/tests/tests.pro) {
|
2012-07-03 19:26:36 +00:00
|
|
|
sub_tests.subdir = tests
|
|
|
|
sub_tests.target = sub-tests
|
2012-07-10 06:59:40 +00:00
|
|
|
sub_tests.depends = sub_src # The tests may have a run-time only dependency on other parts
|
2012-11-30 13:42:52 +00:00
|
|
|
tests_need_tools: sub_tests.depends += sub_tools
|
2012-07-03 19:26:36 +00:00
|
|
|
sub_tests.CONFIG = no_default_install
|
2012-07-10 06:59:40 +00:00
|
|
|
!contains(QT_BUILD_PARTS, tests) {
|
|
|
|
sub_tests.CONFIG += no_default_target
|
|
|
|
} else {
|
|
|
|
# Make sure these are there in case we need them
|
|
|
|
sub_tools.CONFIG -= no_default_target
|
|
|
|
sub_examples.CONFIG -= no_default_target
|
|
|
|
sub_demos.CONFIG -= no_default_target
|
|
|
|
}
|
2012-07-03 19:26:36 +00:00
|
|
|
SUBDIRS += sub_tests
|
|
|
|
}
|
|
|
|
|
|
|
|
QT_BUILD_PARTS -= libs tools examples tests
|
|
|
|
!isEmpty(QT_BUILD_PARTS): warning("Unknown build part(s): $$QT_BUILD_PARTS")
|