blob: fe0e0c2795fb3803fcb557886ec67619278fdc6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#version check qt
TOO_OLD_LIST=$$find(QT_VERSION, ^4\.[0-4])
count(TOO_OLD_LIST, 1) {
message("Cannot build the Qt Creator with a Qt version that old:" $$QT_VERSION)
error("Use at least Qt 4.5.")
}
include(doc/doc.pri)
include(share/share.pri)
TEMPLATE = subdirs
CONFIG += ordered
SUBDIRS = src
message($$INSTALLS)
|