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
|
|
|
|
2009-06-09 19:29:16 +02:00
|
|
|
find_library(ZLIB_LIBRARY_DEBUG NAMES zd zlibd zdlld zlib1d )
|
2009-04-02 15:14:53 +02:00
|
|
|
|
2009-06-09 19:29:16 +02:00
|
|
|
if(ZLIB_FOUND AND ZLIB_LIBRARY_DEBUG)
|
|
|
|
set( ZLIB_LIBRARIES optimized "${ZLIB_LIBRARY}" debug ${ZLIB_LIBRARY_DEBUG})
|
|
|
|
endif()
|