Use dependencies instead of CONFIG+=ordered
Also drops a few instances where the dependency was purely runtime, especially for examples. Change-Id: I2a0476f79928143596bdb3b8f01193af90574ae8 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
This commit is contained in:
parent
beb9ca92df
commit
2c25a431d0
@ -1,7 +1,6 @@
|
||||
requires(qtHaveModule(widgets))
|
||||
|
||||
TEMPLATE = subdirs
|
||||
CONFIG += ordered
|
||||
SUBDIRS = contiguouscache \
|
||||
customtype \
|
||||
customtypesending
|
||||
|
@ -1,4 +1,3 @@
|
||||
TEMPLATE = subdirs
|
||||
CONFIG += ordered
|
||||
win32:CONFIG += console
|
||||
SUBDIRS = complexping.pro complexpong.pro
|
||||
|
@ -1,4 +1,3 @@
|
||||
TEMPLATE = subdirs
|
||||
CONFIG += ordered
|
||||
win32:CONFIG += console
|
||||
SUBDIRS = ping.pro pong.pro
|
||||
|
@ -1,3 +1,2 @@
|
||||
TEMPLATE = subdirs
|
||||
CONFIG += ordered
|
||||
SUBDIRS = screenshot systray
|
||||
|
@ -1,6 +1,8 @@
|
||||
TEMPLATE = subdirs
|
||||
CONFIG += ordered
|
||||
|
||||
!winrt: SUBDIRS += app
|
||||
!winrt {
|
||||
test.depends = app
|
||||
SUBDIRS += app
|
||||
}
|
||||
|
||||
SUBDIRS += test
|
||||
|
@ -1,6 +1,8 @@
|
||||
TEMPLATE = subdirs
|
||||
CONFIG += ordered
|
||||
|
||||
!winrt: SUBDIRS+= signalbug
|
||||
!winrt {
|
||||
test.depends = signalbug
|
||||
SUBDIRS += signalbug
|
||||
}
|
||||
|
||||
SUBDIRS += test
|
||||
|
@ -1,6 +1,7 @@
|
||||
QT = core-private
|
||||
TEMPLATE = subdirs
|
||||
CONFIG += ordered
|
||||
|
||||
test.depends = plugin1 plugin2
|
||||
SUBDIRS = \
|
||||
plugin1 \
|
||||
plugin2 \
|
||||
|
@ -1,6 +1,7 @@
|
||||
QT = core
|
||||
TEMPLATE = subdirs
|
||||
CONFIG += ordered
|
||||
|
||||
tst.depends = lib lib2
|
||||
|
||||
SUBDIRS = lib \
|
||||
lib2 \
|
||||
|
@ -1,12 +1,18 @@
|
||||
QT = core
|
||||
TEMPLATE = subdirs
|
||||
CONFIG += ordered
|
||||
SUBDIRS = lib \
|
||||
theplugin \
|
||||
tst
|
||||
!android: !win32: !mac: SUBDIRS += almostplugin
|
||||
macx-*: qtConfig(private_tests): SUBDIRS += machtest
|
||||
TARGET = tst_qpluginloader
|
||||
TEMPLATE = subdirs
|
||||
|
||||
tst.depends = lib theplugin
|
||||
SUBDIRS = lib \
|
||||
theplugin \
|
||||
tst
|
||||
!android:!win32:!darwin {
|
||||
tst.depends += almostplugin
|
||||
SUBDIRS += almostplugin
|
||||
}
|
||||
macos:qtConfig(private_tests) {
|
||||
tst.depends += machtest
|
||||
SUBDIRS += machtest
|
||||
}
|
||||
|
||||
# no special install rule for subdir
|
||||
INSTALLS =
|
||||
|
@ -1,7 +1,8 @@
|
||||
TEMPLATE = subdirs
|
||||
SUBDIRS = \
|
||||
test
|
||||
|
||||
!winrt: SUBDIRS += crashonexit
|
||||
!winrt {
|
||||
test.depends = crashonexit
|
||||
SUBDIRS += crashonexit
|
||||
}
|
||||
|
||||
CONFIG += ordered
|
||||
SUBDIRS += test
|
||||
|
@ -2,5 +2,6 @@ CONFIG += testcase
|
||||
TARGET = tst_qdbusabstractadaptor
|
||||
QT = core core-private testlib
|
||||
TEMPLATE = subdirs
|
||||
CONFIG += ordered
|
||||
|
||||
qdbusabstractadaptor.depends = qmyserver
|
||||
SUBDIRS = qmyserver qdbusabstractadaptor
|
||||
|
@ -1,6 +1,6 @@
|
||||
CONFIG += testcase
|
||||
TARGET = tst_qdbusabstractinterface
|
||||
TEMPLATE = subdirs
|
||||
CONFIG += ordered
|
||||
qdbusabstractinterface.depends = qpinger
|
||||
SUBDIRS = qpinger qdbusabstractinterface
|
||||
OTHER_FILES += org.qtproject.QtDBus.Pinger.xml
|
||||
|
@ -2,5 +2,5 @@ CONFIG += testcase
|
||||
TARGET = tst_qdbusinterface
|
||||
QT = core testlib
|
||||
TEMPLATE = subdirs
|
||||
CONFIG += ordered
|
||||
qdbusinterface.depends = qmyserver
|
||||
SUBDIRS = qmyserver qdbusinterface
|
||||
|
@ -1,7 +1,7 @@
|
||||
CONFIG += testcase
|
||||
TARGET = tst_qdbusmarshall
|
||||
TEMPLATE = subdirs
|
||||
CONFIG += ordered
|
||||
qdbusmarshall.depends = qpong
|
||||
SUBDIRS = qpong qdbusmarshall
|
||||
|
||||
QT = core-private testlib
|
||||
|
@ -1,7 +1,7 @@
|
||||
TEMPLATE = subdirs
|
||||
|
||||
test.depends = app
|
||||
SUBDIRS = app test
|
||||
CONFIG += ordered
|
||||
|
||||
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
TEMPLATE = subdirs
|
||||
CONFIG += ordered
|
||||
test.depends = testProcessLoopback
|
||||
SUBDIRS = testProcessLoopback test
|
||||
|
@ -1,3 +1,3 @@
|
||||
TEMPLATE = subdirs
|
||||
CONFIG += ordered
|
||||
test.depends = server
|
||||
SUBDIRS = server test
|
||||
|
Loading…
Reference in New Issue
Block a user