installer-framework/installerfw.pro

26 lines
578 B
Prolog
Raw Normal View History

TEMPLATE = subdirs
SUBDIRS += src tools
tools.depends = src
2011-02-21 16:30:31 +01:00
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, 6, 2) {
message("Cannot build Qt Installer Framework with Qt version $${QT_VERSION}.")
error("Use at least Qt 5.6.2.")
}