From 3b6b615334713cbfeb43409ff104244b55f4ce1f Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Mon, 28 Oct 2013 21:59:17 +0100 Subject: export QT_NO_ equivalents to the build system MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit this makes it possible to properly exclude entire subprojects based on the availability of features, rather than stuffing every single source file with #ifdefs. the defines are aggregated from the -qconfig , -no-feature- and some other configure flags. usage: load(qfeatures) !contains(QT_DISABLED_FEATURES, textarea): SUBDIRS += textstuff Task-number: QTBUG-28102 Change-Id: I83400632d64312fa4b907e1318dddfe27c432387 Reviewed-by: Tor Arne Vestbø Reviewed-by: Joerg Bornemann Reviewed-by: Peter Hartmann Reviewed-by: Tasuku Suzuki --- mkspecs/features/qfeatures.prf | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 mkspecs/features/qfeatures.prf (limited to 'mkspecs') diff --git a/mkspecs/features/qfeatures.prf b/mkspecs/features/qfeatures.prf new file mode 100644 index 0000000000..15ef5c5be0 --- /dev/null +++ b/mkspecs/features/qfeatures.prf @@ -0,0 +1,4 @@ +# This file needs to be loaded explicitly, as the evaluation is relatively +# expensive, and not many projects will actually need it. +QMAKE_QT_FEATURES = $$[QT_HOST_DATA/get]/mkspecs/qfeatures.pri +include($$QMAKE_QT_FEATURES) | error("Failed to load $$QMAKE_QT_FEATURES") -- cgit v1.2.3