diff options
author | Brad King <brad.king@kitware.com> | 2016-05-03 14:16:53 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-05-03 14:16:53 (GMT) |
commit | 1109be2d90e053284991c2b9408a954f8d8e98ff (patch) | |
tree | 0d19208a7fd52119abb6340eebb0d5b9c864432d | |
parent | 4d59471a7e45cd8f53ff629cda9e132faab1a814 (diff) | |
parent | 313676c9f0e5be339bff2064cb649b075c6b8e12 (diff) | |
download | CMake-1109be2d90e053284991c2b9408a954f8d8e98ff.zip CMake-1109be2d90e053284991c2b9408a954f8d8e98ff.tar.gz CMake-1109be2d90e053284991c2b9408a954f8d8e98ff.tar.bz2 |
Merge topic 'FindHDF5-debug-suffix'
313676c9 FindHDF5: Add another debug suffix
-rw-r--r-- | Modules/FindHDF5.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/FindHDF5.cmake b/Modules/FindHDF5.cmake index 9f6e666..38a728e 100644 --- a/Modules/FindHDF5.cmake +++ b/Modules/FindHDF5.cmake @@ -310,10 +310,10 @@ if( NOT HDF5_FOUND ) # See https://cmake.org/Bug/view.php?id=1643. We search # first for the full static library name, but fall back to a # generic search on the name if the static search fails. - set( THIS_LIBRARY_SEARCH_DEBUG lib${LIB}d.a ${LIB}d ) + set( THIS_LIBRARY_SEARCH_DEBUG lib${LIB}d.a lib${LIB}_debug.a ${LIB}d ${LIB}_debug ) set( THIS_LIBRARY_SEARCH_RELEASE lib${LIB}.a ${LIB} ) else() - set( THIS_LIBRARY_SEARCH_DEBUG ${LIB}d ) + set( THIS_LIBRARY_SEARCH_DEBUG ${LIB}d ${LIB}_debug ) set( THIS_LIBRARY_SEARCH_RELEASE ${LIB} ) endif() find_library( HDF5_${LIB}_LIBRARY_DEBUG |