mirror of
https://github.com/moparisthebest/curl
synced 2024-11-02 00:25:04 -04:00
4c5307b456
PS: Hello world :)
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()
|