summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/qmake/qt_version.pro
blob: ac0338b0e9c323a4bfa9556f35fd708865c0958c (plain)
1
2
3
4
5
6
7
#! [checking for a specific version of Qt]
contains(QT_VERSION, "4.7.4") {
    message(4.7.4)
} else {
    message(Some other version)
}
#! [checking for a specific version of Qt]