refs #624 Use conditional SUBDIRS instead of REQUIRES for enabling/disabling subprojects.

This commit is contained in:
Mathew Sutcliffe
2016-03-21 00:57:27 +00:00
parent a895cc2c54
commit 1801616953
20 changed files with 50 additions and 52 deletions

View File

@@ -6,11 +6,17 @@ CONFIG += ordered
OTHER_FILES += mkspecs/features/*.prf
OTHER_FILES += mkspecs/features/*.pri
SUBDIRS += docs
contains(BLACK_CONFIG,Doxygen) {
SUBDIRS += docs
}
SUBDIRS += resources
SUBDIRS += src
SUBDIRS += samples
SUBDIRS += tests
contains(BLACK_CONFIG,Samples) {
SUBDIRS += samples
}
contains(BLACK_CONFIG,Unittests) {
SUBDIRS += tests
}
include(install.pri)