summaryrefslogtreecommitdiffstats
path: root/src/tools/tools.pro
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/tools.pro')
-rw-r--r--src/tools/tools.pro43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/tools/tools.pro b/src/tools/tools.pro
deleted file mode 100644
index fa9ed54c50..0000000000
--- a/src/tools/tools.pro
+++ /dev/null
@@ -1,43 +0,0 @@
-TEMPLATE = subdirs
-
-TOOLS_SUBDIRS = src_tools_bootstrap src_tools_moc src_tools_rcc src_tools_qdoc
-contains(QT_CONFIG, dbus): TOOLS_SUBDIRS += src_tools_qdbusxml2cpp src_tools_qdbuscpp2xml
-!contains(QT_CONFIG, no-widgets): TOOLS_SUBDIRS += src_tools_uic
-# Set subdir and respective target name
-src_tools_bootstrap.subdir = bootstrap
-src_tools_bootstrap.target = sub-tools-bootstrap
-src_tools_moc.subdir = moc
-src_tools_moc.target = sub-moc
-src_tools_rcc.subdir = rcc
-src_tools_rcc.target = sub-rcc
-src_tools_uic.subdir = uic
-src_tools_uic.target = sub-uic
-src_tools_qdoc.subdir = qdoc
-src_tools_qdoc.target = sub-qdoc
-contains(QT_CONFIG, dbus) {
- src_tools_qdbusxml2cpp.subdir = qdbusxml2cpp
- src_tools_qdbusxml2cpp.target = sub-qdbusxml2cpp
- src_tools_qdbuscpp2xml.subdir = qdbuscpp2xml
- src_tools_qdbuscpp2xml.target = sub-qdbuscpp2xml
-}
-
-!ordered {
- # Set dependencies for each subdir
- src_tools_moc.depends = src_tools_bootstrap
- src_tools_rcc.depends = src_tools_bootstrap
- src_tools_uic.depends = src_tools_bootstrap
- src_tools_qdoc.depends = src_tools_bootstrap
- contains(QT_CONFIG, dbus) {
- src_tools_qdbusxml2cpp.depends = src_tools_bootstrap
- src_tools_qdbuscpp2xml.depends = src_tools_bootstrap
- }
-}
-
-SUBDIRS = $$TOOLS_SUBDIRS
-
-# Ensure qdoc is built before making any docs. We rely on the existing dependency
-# on bootstrap for each of the other tools to ensure they also build qdoc first,
-# and likewise, the dependency of the rest of the build on tools, src, etc.
-bootstrap_prepare_docs.depends += $${src_tools_qdoc.target}-make_first
-bootstrap_prepare_docs.target = $${src_tools_bootstrap.target}-prepare_docs
-QMAKE_EXTRA_TARGETS += bootstrap_prepare_docs