2009-04-02 15:14:53 +02:00
|
|
|
# Locate zlib
|
2009-06-09 19:29:16 +02:00
|
|
|
include("${CMAKE_ROOT}/Modules/FindZLIB.cmake")
|
2009-04-02 15:14:53 +02:00
|
|
|
|
2012-09-13 14:08:21 +02:00
|
|
|
# starting 2.8 it is better to use standard modules
|
|
|
|
if(CMAKE_MAJOR_VERSION EQUAL "2" AND CMAKE_MINOR_VERSION LESS "8")
|
|
|
|
find_library(ZLIB_LIBRARY_DEBUG NAMES zd zlibd zdlld zlib1d )
|
|
|
|
if(ZLIB_FOUND AND ZLIB_LIBRARY_DEBUG)
|
|
|
|
set( ZLIB_LIBRARIES optimized "${ZLIB_LIBRARY}" debug ${ZLIB_LIBRARY_DEBUG})
|
|
|
|
endif()
|
2009-06-09 19:29:16 +02:00
|
|
|
endif()
|