mirror of
https://github.com/randy408/libspng
synced 2025-03-28 21:13:20 +00:00
cmake: make finding zlib in-tree easier
When building libspng as a sub-module alongside zlib as a sub-module, then it becomes much easier to locate the in-tree zlib when the ZLIB_ROOT variable can be set to ${zlib_BINARY_DIR}. This is especially useful when building on Windows where zlib-dev typically isn't installed.
This commit is contained in:
parent
0bd962bb8e
commit
82b0c5107d
@ -14,6 +14,11 @@ option(BUILD_EXAMPLES "Build examples" ON)
|
||||
|
||||
include(GNUInstallDirs)
|
||||
|
||||
# Allow the usage of [PackageName]_ROOT variables for FindPackage
|
||||
if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.12")
|
||||
cmake_policy(SET CMP0074 NEW)
|
||||
endif()
|
||||
|
||||
find_package(ZLIB REQUIRED)
|
||||
include_directories(${ZLIB_INCLUDE_DIRS})
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user