We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3433670 + 6cc5c17 commit 6662212Copy full SHA for 6662212
cmake/check_hdf5.cmake
@@ -18,9 +18,9 @@ function(check_hdf5_feature_header)
18
19
message(STATUS "Checking for HDF5 config header")
20
foreach(_h5_header "H5public.h" "H5pubconf.h" "H5pubconf-64.h" "H5pubconf-32.h")
21
- check_include_file(${_h5_header} _can_include_h5_header)
+ check_include_file(${_h5_header} _can_include_h5_header${_h5_header})
22
23
- if (_can_include_h5_header)
+ if (_can_include_h5_header${_h5_header})
24
message(STATUS "Using ${_h5_header} to check for feature macros")
25
set(_H5_FEATURE_HEADER ${_h5_header} CACHE INTERNAL "")
26
return()
0 commit comments