You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vita-toolchain/cmake/Modules/Findzlib.cmake

18 lines
554 B
CMake

find_package(PkgConfig)
pkg_check_modules(PC_zlib REQUIRED zlib>=1.2.8)
find_path(zlib_INCLUDE_DIR zlib.h
HINTS ${PC_zlib_INCLUDEDIR} ${PC_zlib_INCLUDE_DIRS})
find_library(zlib_LIBRARY NAMES z
HINTS ${PC_zlib_LIBDIR} ${PC_zlib_LIBRARY_DIRS} )
set(zlib_LIBRARIES ${zlib_LIBRARY})
set(zlib_INCLUDE_DIRS ${zlib_INCLUDE_DIR})
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(zlib DEFAULT_MSG
zlib_LIBRARY zlib_INCLUDE_DIR)
mark_as_advanced(zlib_INCLUDE_DIR zlib_LIBRARY )