586adeabe4
this is much more elegant than the so far propagated !isEmpty(QT.foo.name). also replace feature-specific tests (no-gui and no-widgets) and the obsolete contains(QT_CONFIG, foo) syntax. Change-Id: Ia4b3c8febcabf9eeca67b1f9173a523820b1038b Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com> Reviewed-by: Tasuku Suzuki <stasuku@gmail.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
32 lines
822 B
Prolog
32 lines
822 B
Prolog
TEMPLATE = subdirs
|
|
CONFIG += no_docs_target
|
|
|
|
SUBDIRS = \
|
|
gui \
|
|
network \
|
|
threads \
|
|
xml \
|
|
qpa
|
|
|
|
qtHaveModule(widgets) {
|
|
SUBDIRS += widgets \
|
|
ipc \
|
|
sql \
|
|
tools \
|
|
touch \
|
|
gestures
|
|
}
|
|
|
|
wince*|embedded|x11:qtHaveModule(gui): SUBDIRS += embedded
|
|
|
|
contains(QT_BUILD_PARTS, tools):qtHaveModule(gui):qtHaveModule(widgets): SUBDIRS += qtestlib
|
|
qtHaveModule(opengl):qtHaveModule(widgets): SUBDIRS += opengl
|
|
qtHaveModule(dbus): SUBDIRS += dbus
|
|
qtHaveModule(concurrent): SUBDIRS += qtconcurrent
|
|
|
|
aggregate.files = aggregate/examples.pro
|
|
aggregate.path = $$[QT_INSTALL_EXAMPLES]
|
|
readme.files = README
|
|
readme.path = $$[QT_INSTALL_EXAMPLES]
|
|
INSTALLS += aggregate readme
|