summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/zlib_dependency.pri
blob: 77a1b246b9a1056ff12cde55c19cbf96e1c7a9dd (plain)
1
2
3
4
5
6
7
8
9
10
# zlib dependency satisfied by bundled 3rd party zlib or system zlib
contains(QT_CONFIG, system-zlib) {
    symbian:                 LIBS_PRIVATE += -llibz
    else:if(unix|win32-g++*):LIBS_PRIVATE += -lz
    else:                    LIBS += zdll.lib
} else {
# We could copy the zlib sources over to this module, but for now we don't.
#    INCLUDEPATH +=  $$PWD/zlib
    error("zlib not available: Qt was not built with the system's zlib")
}