mirror of
https://github.com/QuasarApp/installer-framework.git
synced 2025-04-27 06:04:30 +00:00
Use qmake .depends instead of CONFIG += ordered.
Fixes my sporadic build issues with IncrediBuild. Change-Id: I825c1473dac63159ae592814596dce3484467321 Reviewed-by: Kai Koehne <kai.koehne@theqtcompany.com> Reviewed-by: Niels Weber <niels.weber@theqtcompany.com>
This commit is contained in:
parent
97b5fe3ebc
commit
cb7613e816
@ -1,17 +1,23 @@
|
||||
CONFIG += ordered
|
||||
TEMPLATE = subdirs
|
||||
SUBDIRS += src tools
|
||||
tools.depends = src
|
||||
|
||||
include (installerfw.pri)
|
||||
include (doc/doc.pri)
|
||||
|
||||
BUILD_TESTS = $$(BUILDTESTS)
|
||||
isEmpty(BUILD_TESTS):BUILD_TESTS=$${BUILDTESTS}
|
||||
!isEmpty(BUILD_TESTS):SUBDIRS += tests
|
||||
!isEmpty(BUILD_TESTS) {
|
||||
SUBDIRS += tests
|
||||
tests.depends = src
|
||||
}
|
||||
|
||||
BUILD_EXAMPLES = $$(BUILDEXAMPLES)
|
||||
isEmpty(BUILD_EXAMPLES):BUILD_EXAMPLES=$${BUILDEXAMPLES}
|
||||
!isEmpty(BUILD_EXAMPLES):SUBDIRS += examples
|
||||
!isEmpty(BUILD_EXAMPLES) {
|
||||
SUBDIRS += examples
|
||||
examples.depends = src
|
||||
}
|
||||
|
||||
!minQtVersion(5, 4, 0) {
|
||||
message("Cannot build Qt Installer Framework with Qt version $${QT_VERSION}.")
|
||||
|
@ -1,3 +1,3 @@
|
||||
CONFIG += ordered
|
||||
TEMPLATE = subdirs
|
||||
SUBDIRS += 7zip installer
|
||||
installer.depends = 7zip
|
||||
|
@ -1,6 +1,7 @@
|
||||
CONFIG += ordered
|
||||
TEMPLATE = subdirs
|
||||
SUBDIRS += libs sdk
|
||||
sdk.depends = libs
|
||||
|
||||
TRANSLATIONS += sdk/translations/de.ts \
|
||||
sdk/translations/en.ts \
|
||||
sdk/translations/fr.ts \
|
||||
|
@ -1,4 +1,3 @@
|
||||
CONFIG += ordered
|
||||
TEMPLATE = subdirs
|
||||
|
||||
SUBDIRS = \
|
||||
|
@ -1,4 +1,3 @@
|
||||
CONFIG += ordered
|
||||
TEMPLATE = subdirs
|
||||
|
||||
SUBDIRS += \
|
||||
|
Loading…
x
Reference in New Issue
Block a user