findzlib.cmake

来自「InsightToolkit-1.4.0(有大量的优化算法程序)」· CMAKE 代码 · 共 43 行

CMAKE
43
字号
#
# Find a ZLIB library
#
# This file is used to manage using either a natively provided ZLIB library or the one in v3p if provided.
#
#
# As per the standard scheme the following definitions are used
# ZLIB_INCLUDE_DIR - where to find zlib.h
# ZLIB_LIBRARIES   - the set of libraries to include to use ZLIB.
# ZLIB_FOUND       - TRUE, if available somewhere on the system.

# Additionally
# VXL_USING_NATIVE_ZLIB  - True if we are using a ZLIB library provided outside vxl (or v3p)


# If this FORCE variable is unset or is FALSE, try to find a native library.
IF( VXL_FORCE_V3P_ZLIB )
ELSE( VXL_FORCE_V3P_ZLIB )
  INCLUDE( ${MODULE_PATH}/NewCMake/FindZLIB.cmake )
ENDIF( VXL_FORCE_V3P_ZLIB )

  
IF(ZLIB_FOUND)

  SET(VXL_USING_NATIVE_ZLIB "YES")

ELSE(ZLIB_FOUND)

  #
  # At some point, in a "release" version, it is possible that someone
  # will not have the v3p ZLIB library, so make sure the headers
  # exist.
  #
  
  IF(EXISTS ${vxl_SOURCE_DIR}/v3p/zlib/zlib.h)

    SET( ZLIB_FOUND "YES" )
    SET( ZLIB_INCLUDE_DIR ${vxl_SOURCE_DIR}/v3p/zlib)  
    SET( ZLIB_LIBRARIES zlib )
  
  ENDIF(EXISTS ${vxl_SOURCE_DIR}/v3p/zlib/zlib.h)
ENDIF(ZLIB_FOUND)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?