mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-17 09:11:36 -05:00
FindHDF5: use the target rather than the path
On Windows, the `LOCATION` property gets the path to the `.dll` rather than the `.lib` which is unsuitable for linking.
This commit is contained in:
@@ -439,8 +439,8 @@ if(NOT HDF5_FOUND AND NOT HDF5_ROOT)
|
||||
set(HDF5_${_lang}_LIBRARY ${_lang_location} CACHE PATH
|
||||
"HDF5 ${_lang} library" )
|
||||
mark_as_advanced(HDF5_${_lang}_LIBRARY)
|
||||
list(APPEND HDF5_LIBRARIES ${HDF5_${_lang}_LIBRARY})
|
||||
set(HDF5_${_lang}_LIBRARIES ${HDF5_${_lang}_LIBRARY})
|
||||
list(APPEND HDF5_LIBRARIES ${HDF5_${_lang}_TARGET}${_suffix})
|
||||
set(HDF5_${_lang}_LIBRARIES ${HDF5_${_lang}_TARGET}${_suffix})
|
||||
set(HDF5_${_lang}_FOUND True)
|
||||
endif()
|
||||
if(FIND_HL)
|
||||
@@ -449,8 +449,8 @@ if(NOT HDF5_FOUND AND NOT HDF5_ROOT)
|
||||
set(HDF5_${_lang}_HL_LIBRARY ${_lang_hl_location} CACHE PATH
|
||||
"HDF5 ${_lang} HL library" )
|
||||
mark_as_advanced(HDF5_${_lang}_HL_LIBRARY)
|
||||
list(APPEND HDF5_HL_LIBRARIES ${HDF5_${_lang}_HL_LIBRARY})
|
||||
set(HDF5_${_lang}_HL_LIBRARIES ${HDF5_${_lang}_HL_LIBRARY})
|
||||
list(APPEND HDF5_HL_LIBRARIES ${HDF5_${_lang}_TARGET}${_suffix})
|
||||
set(HDF5_${_lang}_HL_LIBRARIES ${HDF5_${_lang}_TARGET}${_suffix})
|
||||
set(HDF5_HL_FOUND True)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
Reference in New Issue
Block a user