forked from OSchip/llvm-project
[cmake] Use find_package to discover zlib
This allows us to use standard cmake utilities to point to non-system zlib locations. Patch by Oksana Shadura and me (D39002). llvm-svn: 316025
This commit is contained in:
parent
7dabe9ced7
commit
96d9b7f5e1
|
@ -132,7 +132,10 @@ endif()
|
|||
# like strlen, leading to false positives.
|
||||
if( NOT PURE_WINDOWS AND NOT LLVM_USE_SANITIZER MATCHES "Memory.*")
|
||||
if (LLVM_ENABLE_ZLIB)
|
||||
check_library_exists(z compress2 "" HAVE_LIBZ)
|
||||
find_package(ZLIB REQUIRED)
|
||||
if (ZLIB_FOUND)
|
||||
set(HAVE_LIBZ 1)
|
||||
endif()
|
||||
else()
|
||||
set(HAVE_LIBZ 0)
|
||||
endif()
|
||||
|
|
|
@ -22,7 +22,7 @@ elseif( CMAKE_HOST_UNIX )
|
|||
endif()
|
||||
set(system_libs ${system_libs} ${LLVM_PTHREAD_LIB})
|
||||
if ( LLVM_ENABLE_ZLIB AND HAVE_LIBZ )
|
||||
set(system_libs ${system_libs} z)
|
||||
set(system_libs ${system_libs} ${ZLIB_LIBRARIES})
|
||||
endif()
|
||||
if( UNIX AND NOT (BEOS OR HAIKU) )
|
||||
set(system_libs ${system_libs} m)
|
||||
|
|
Loading…
Reference in New Issue