installer-framework/installerfw.pro

28 lines
604 B
Prolog
Raw Normal View History

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