installer-framework/installerfw.pro
Katja Marttila 7238910303 Disable cross compiling
Change-Id: Ib0db7d9238f60e6a859bb8b5292d4166945c5495
Reviewed-by: Iikka Eklund <iikka.eklund@qt.io>
2017-10-23 09:21:49 +00:00

28 lines
604 B
Prolog

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