mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 15:45:12 -04:00
9 lines
251 B
CMake
9 lines
251 B
CMake
# Locate zlib
|
|
include("${CMAKE_ROOT}/Modules/FindZLIB.cmake")
|
|
|
|
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()
|