2
0

FindZLIB.cmake 251 B

12345678
  1. # Locate zlib
  2. include("${CMAKE_ROOT}/Modules/FindZLIB.cmake")
  3. find_library(ZLIB_LIBRARY_DEBUG NAMES zd zlibd zdlld zlib1d )
  4. if(ZLIB_FOUND AND ZLIB_LIBRARY_DEBUG)
  5. set( ZLIB_LIBRARIES optimized "${ZLIB_LIBRARY}" debug ${ZLIB_LIBRARY_DEBUG})
  6. endif()