blob: d3adcb741649bc5fe3305583565219d8d1fa76cc (
plain)
1
2
3
4
5
6
7
8
9
|
find_package(ZLIB)
if(ZLIB_FOUND OR ZLIB_Found)
set(cmMesonVersionedTestDep_FOUND ON)
set(cmMesonVersionedTestDep_LIBRARIES ${ZLIB_LIBRARY})
set(cmMesonVersionedTestDep_INCLUDE_DIRS ${ZLIB_INCLUDE_DIR})
else()
set(cmMesonVersionedTestDep_FOUND OFF)
endif()
|