File: FindZLIB.cmake

package info (click to toggle)
lyx 2.0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 96,552 kB
  • sloc: cpp: 388,556; python: 19,985; ansic: 9,725; sh: 5,696; makefile: 3,907; pascal: 1,388; objc: 985; perl: 319; yacc: 289; tcl: 163; xml: 23; sed: 16
file content (41 lines) | stat: -rw-r--r-- 1,011 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#
#  based on cmake file
#

set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)

if (ZLIB_INCLUDE_DIR)
  # Already in cache, be silent
  set(ZLIB_FIND_QUIETLY TRUE)
endif()

find_path(ZLIB_INCLUDE_DIR zlib.h
 /usr/include
 /usr/local/include
 "${GNUWIN32_DIR}"/include)

set(POTENTIAL_Z_LIBS z zlib zdll)

find_library(ZLIB_LIBRARY NAMES ${POTENTIAL_Z_LIBS}
	PATHS
	"C:\\Programme\\Microsoft Visual Studio 8\\VC\\lib"
	${SYSTEM_LIB_DIRS}
	"${GNUWIN32_DIR}"/lib)

if(ZLIB_INCLUDE_DIR AND ZLIB_LIBRARY)
   set(ZLIB_FOUND TRUE)
endif()

if(ZLIB_FOUND)
   if(NOT ZLIB_FIND_QUIETLY)
      message(STATUS "Found Z: ${ZLIB_LIBRARY}")
   endif()
else()
   if(ZLIB_FIND_REQUIRED)
      message(STATUS "Looked for Z libraries named ${POTENTIAL_Z_LIBS}.")
      message(STATUS "Found no acceptable Z library. This is fatal.")
      message(FATAL_ERROR "Could NOT find z library, set GNUWIN32_DIR to dir containing /include and /bin folders: -DGNUWIN32_DIR=...")
   endif()
endif()

mark_as_advanced(ZLIB_LIBRARY ZLIB_INCLUDE_DIR)