-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathzlibConfig.cmake.in
26 lines (21 loc) · 932 Bytes
/
zlibConfig.cmake.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@PACKAGE_INIT@
set(_ZLIB_supported_components "")
if(@ZLIB_BUILD_SHARED@)
list(APPEND _ZLIB_supported_components shared)
endif(@ZLIB_BUILD_SHARED@)
if(@ZLIB_BUILD_STATIC@)
list(APPEND _ZLIB_supported_components static)
endif(@ZLIB_BUILD_STATIC@)
if(ZLIB_FIND_COMPONENTS)
foreach(_comp ${ZLIB_FIND_COMPONENTS})
if(NOT _comp IN_LIST _ZLIB_supported_components)
set(ZLIB_FOUND False)
set(ZLIB_NOT_FOUND_MESSAGE "Unsupported component: ${_comp}")
endif(NOT _comp IN_LIST _ZLIB_supported_components)
include("${CMAKE_CURRENT_LIST_DIR}/ZLIB-${_comp}.cmake")
endforeach(_comp ${ZLIB_FIND_COMPONENTS})
else(ZLIB_FIND_COMPONENTS)
foreach(_component_config IN LISTS _ZLIB_supported_components)
include("${CMAKE_CURRENT_LIST_DIR}/ZLIB-${_component_config}.cmake")
endforeach(_component_config IN LISTS _ZLIB_supported_components)
endif(ZLIB_FIND_COMPONENTS)