diff options
author | Brad King <brad.king@kitware.com> | 2021-11-04 13:03:56 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2021-11-04 13:04:41 (GMT) |
commit | 274e3fb7f4eea7ae26ce63efdfbf4851256c097d (patch) | |
tree | 11612448f6418947f41efff11c883055243118c1 /Modules | |
parent | 7456127e013b45b85f200b173cdef01a1436b879 (diff) | |
parent | 6f830c5c38abf0deed2ffb7e5d4407faa5656503 (diff) | |
download | CMake-274e3fb7f4eea7ae26ce63efdfbf4851256c097d.zip CMake-274e3fb7f4eea7ae26ce63efdfbf4851256c097d.tar.gz CMake-274e3fb7f4eea7ae26ce63efdfbf4851256c097d.tar.bz2 |
Merge topic 'FindHDF5-fix-windows-hl-implib-query' into release-3.22
6f830c5c38 FindHDF5: fix variable name when querying `hdf5_hl`'s implib
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !6697
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/FindHDF5.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindHDF5.cmake b/Modules/FindHDF5.cmake index e335355..caaf7b7 100644 --- a/Modules/FindHDF5.cmake +++ b/Modules/FindHDF5.cmake @@ -560,7 +560,7 @@ if(NOT HDF5_FOUND AND NOT HDF5_NO_FIND_PACKAGE_CONFIG_FILE) set(HDF5_${_lang}_FOUND TRUE) endif() if(HDF5_FIND_HL) - get_target_property(_lang_hl_location ${HDF5_${_lang}_HL_TARGET}${_suffix} IMPORTED_IMPLIB_${_hdf5_imported_conf} ) + get_target_property(_hdf5_lang_hl_location ${HDF5_${_lang}_HL_TARGET}${_suffix} IMPORTED_IMPLIB_${_hdf5_imported_conf} ) if (NOT _hdf5_lang_hl_location) get_target_property(_hdf5_lang_hl_location ${HDF5_${_lang}_HL_TARGET}${_suffix} LOCATION_${_hdf5_imported_conf}) if (NOT _hdf5_hl_lang_location) |