summaryrefslogtreecommitdiffstats
path: root/libcommuni/src/3rdparty/pkg.pri
blob: 53715fbd875c5724b0ba9e27d277e313cc838b48 (plain)
1
2
3
4
5
6
7
8
9
10
######################################################################
# Communi
######################################################################

defineTest(pkgExists) {
    contains(QT_CONFIG, no-pkg-config):return(false)
    isEmpty(PKG_CONFIG):PKG_CONFIG = pkg-config
    unix:system($$PKG_CONFIG --exists $$1 2> /dev/null):return(true)
    return(false)
}