mirror of
https://github.com/QuasarApp/installer-framework.git
synced 2025-05-11 12:29:39 +00:00
Minimum Qt version required is 5.5.0. Change-Id: I7a336e5a776b66030fb6e94a9d2444e6a324d04f Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com> Reviewed-by: Niels Weber <niels.weber@theqtcompany.com> Reviewed-by: Karsten Heimrich <karsten.heimrich@theqtcompany.com>
26 lines
578 B
Prolog
26 lines
578 B
Prolog
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
|
|
tests.depends = src
|
|
}
|
|
|
|
BUILD_EXAMPLES = $$(BUILDEXAMPLES)
|
|
isEmpty(BUILD_EXAMPLES):BUILD_EXAMPLES=$${BUILDEXAMPLES}
|
|
!isEmpty(BUILD_EXAMPLES) {
|
|
SUBDIRS += examples
|
|
examples.depends = src
|
|
}
|
|
|
|
!minQtVersion(5, 5, 0) {
|
|
message("Cannot build Qt Installer Framework with Qt version $${QT_VERSION}.")
|
|
error("Use at least Qt 5.5.0.")
|
|
}
|