blob: 06a2060714e03594d17907213d5ce5b3adfbf703 (
plain)
1
2
3
4
5
6
7
8
9
|
find_package(ZLIB)
if(ZLIB_FOUND OR ZLIB_Found)
set(cmMesonTestDep_FOUND ON)
set(cmMesonTestDep_LIBRARIES ${ZLIB_LIBRARY})
set(cmMesonTestDep_INCLUDE_DIRS ${ZLIB_INCLUDE_DIR})
else()
set(cmMesonTestDep_FOUND OFF)
endif()
|