1
QMAKEVERSION = $$[QMAKE_VERSION]
2
ISQT4 = $$find(QMAKEVERSION, ^[2-9])
3
isEmpty( ISQT4 ) {
4
error("Use the qmake include with Qt4.4 or greater, on Debian that is qmake-qt4");
5
}
6
7
TEMPLATE = subdirs
8
SUBDIRS  = src tools
9
10
unix {
11
    # this is an ugly work around to do .PHONY: doc
12
    doxygen.target = doc dox
13
    doxygen.commands = doxygen Doxyfile
14
    doxygen.depends = Doxyfile
15
    QMAKE_EXTRA_UNIX_TARGETS += doxygen
16
}