mirror of
https://github.com/etlegacy/etlegacy-libs.git
synced 2024-11-10 23:01:47 +00:00
5d31d90fa4
This reverts commitdad99ac8e3
. This reverts commite5639398e7
. This reverts commitcf4eae3ded
.
8 lines
251 B
CMake
8 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()
|