CMake: Propagate ZLIB version in Find script to wrapper script
Pick-to: 6.5 6.7 Change-Id: Ieba03d792b5a21c7a101e3034831475d22fd9814 Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
This commit is contained in:
parent
5a0faa9198
commit
aec74f9c76
@ -28,5 +28,13 @@ if(ZLIB_FOUND)
|
|||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(ZLIB_VERSION)
|
||||||
|
set(WrapSystemZLIB_VERSION "${ZLIB_VERSION}")
|
||||||
|
elseif(ZLIB_VERSION_STRING)
|
||||||
|
set(WrapSystemZLIB_VERSION "${ZLIB_VERSION_STRING}")
|
||||||
|
endif()
|
||||||
|
|
||||||
include(FindPackageHandleStandardArgs)
|
include(FindPackageHandleStandardArgs)
|
||||||
find_package_handle_standard_args(WrapSystemZLIB DEFAULT_MSG WrapSystemZLIB_FOUND)
|
find_package_handle_standard_args(WrapSystemZLIB
|
||||||
|
REQUIRED_VARS WrapSystemZLIB_FOUND
|
||||||
|
VERSION_VAR WrapSystemZLIB_VERSION)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user