23 lines
529 B
Plaintext
23 lines
529 B
Plaintext
|
defineTest(minQtVersion) {
|
||
|
maj = $$1
|
||
|
min = $$2
|
||
|
patch = $$3
|
||
|
isEqual(QT_MAJOR_VERSION, $$maj) {
|
||
|
isEqual(QT_MINOR_VERSION, $$min) {
|
||
|
isEqual(QT_PATCH_VERSION, $$patch) {
|
||
|
return(true)
|
||
|
}
|
||
|
greaterThan(QT_PATCH_VERSION, $$patch) {
|
||
|
return(true)
|
||
|
}
|
||
|
}
|
||
|
greaterThan(QT_MINOR_VERSION, $$min) {
|
||
|
return(true)
|
||
|
}
|
||
|
}
|
||
|
greaterThan(QT_MAJOR_VERSION, $$maj) {
|
||
|
return(true)
|
||
|
}
|
||
|
return(false)
|
||
|
}
|