forked from qt-creator/qt-creator
Details: Creator on Linux works now in two modes:
1) out of the build dir (shadow builds to be tested)
2) make INSTALL_ROOT=/prefix install
15 lines
309 B
Prolog
15 lines
309 B
Prolog
#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
|