summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/zlib_dependency.pri
blob: 8373a8cc3377173320011af4f91b160b4b112aa1 (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)
}