2006-09-15 17:05:20 +00:00
|
|
|
#
|
|
|
|
# based on cmake file
|
|
|
|
#
|
2007-08-28 19:54:42 +00:00
|
|
|
|
|
|
|
set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
|
|
|
|
|
2006-06-15 15:11:25 +00:00
|
|
|
if (ZLIB_INCLUDE_DIR)
|
|
|
|
# Already in cache, be silent
|
|
|
|
set(ZLIB_FIND_QUIETLY TRUE)
|
2007-08-28 18:30:02 +00:00
|
|
|
endif()
|
2006-06-15 15:11:25 +00:00
|
|
|
|
2013-08-22 22:02:56 +00:00
|
|
|
set(zlibsearch "/usr/include" "/usr/local/include")
|
|
|
|
if (GNUWIN32_DIR)
|
|
|
|
list(APPEND zlibsearch "${GNUWIN32_DIR}/include")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
find_path(ZLIB_INCLUDE_DIR zlib.h PATHS ${zlibsearch})
|
2006-06-15 15:11:25 +00:00
|
|
|
|
2011-05-14 09:26:47 +00:00
|
|
|
find_file(ZLIB_HEADER zlib.h
|
2011-05-14 09:22:35 +00:00
|
|
|
PATHS ${ZLIB_INCLUDE_DIR} NO_DEFAULT_PATH)
|
|
|
|
|
2006-06-15 15:11:25 +00:00
|
|
|
set(POTENTIAL_Z_LIBS z zlib zdll)
|
2007-08-28 19:54:42 +00:00
|
|
|
|
2011-05-14 09:22:35 +00:00
|
|
|
find_library(ZLIB_LIBRARY NAMES ${POTENTIAL_Z_LIBS}
|
|
|
|
PATHS
|
|
|
|
${ICONV_RELATIVE_TO_LIBINTL}
|
|
|
|
NO_DEFAULT_PATH)
|
|
|
|
|
|
|
|
|
2013-08-22 22:02:56 +00:00
|
|
|
set(zlibsearch "C:\\Programme\\Microsoft Visual Studio 8\\VC\\lib")
|
|
|
|
if(SYSTEM_LIB_DIRS)
|
|
|
|
list(APPEND zlibsearch ${SYSTEM_LIB_DIRS})
|
|
|
|
endif()
|
|
|
|
if(GNUWIN32_DIR)
|
|
|
|
list(APPEND zlibsearch "${GNUWIN32_DIR}/lib")
|
|
|
|
endif()
|
2007-08-28 19:54:42 +00:00
|
|
|
find_library(ZLIB_LIBRARY NAMES ${POTENTIAL_Z_LIBS}
|
2013-08-22 22:02:56 +00:00
|
|
|
PATHS ${zlibsearch})
|
2007-08-28 19:54:42 +00:00
|
|
|
|
|
|
|
if(ZLIB_INCLUDE_DIR AND ZLIB_LIBRARY)
|
2007-08-28 18:30:02 +00:00
|
|
|
set(ZLIB_FOUND TRUE)
|
|
|
|
endif()
|
2006-06-15 15:11:25 +00:00
|
|
|
|
2007-08-28 19:54:42 +00:00
|
|
|
if(ZLIB_FOUND)
|
|
|
|
if(NOT ZLIB_FIND_QUIETLY)
|
2007-08-28 18:30:02 +00:00
|
|
|
message(STATUS "Found Z: ${ZLIB_LIBRARY}")
|
|
|
|
endif()
|
|
|
|
else()
|
2007-08-28 19:54:42 +00:00
|
|
|
if(ZLIB_FIND_REQUIRED)
|
2007-08-28 18:30:02 +00:00
|
|
|
message(STATUS "Looked for Z libraries named ${POTENTIAL_Z_LIBS}.")
|
|
|
|
message(STATUS "Found no acceptable Z library. This is fatal.")
|
2008-11-15 20:55:19 +00:00
|
|
|
message(FATAL_ERROR "Could NOT find z library, set GNUWIN32_DIR to dir containing /include and /bin folders: -DGNUWIN32_DIR=...")
|
2007-08-28 18:30:02 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
2006-06-15 15:11:25 +00:00
|
|
|
|
2007-08-28 19:54:42 +00:00
|
|
|
mark_as_advanced(ZLIB_LIBRARY ZLIB_INCLUDE_DIR)
|