diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2021-10-25 14:27:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-25 14:27:44 (GMT) |
commit | 9d296c30e57105eedd3fd747c32d4ec1c9c2494d (patch) | |
tree | cf9729e211bc34514cb06041e0fdd27a97d287c6 /config/cmake/HDFCXXCompilerFlags.cmake | |
parent | 8124798cba9292ecdbf4211e3eecbdd40b2bdda2 (diff) | |
download | hdf5-9d296c30e57105eedd3fd747c32d4ec1c9c2494d.zip hdf5-9d296c30e57105eedd3fd747c32d4ec1c9c2494d.tar.gz hdf5-9d296c30e57105eedd3fd747c32d4ec1c9c2494d.tar.bz2 |
1.10 Merge Move test utilities to utils/test folder #1109 (#1111)
* Merge Move test utilities to utils/test folder #1109
* Merge Correct shell tests and c++ flag warning
* Fix typo
Diffstat (limited to 'config/cmake/HDFCXXCompilerFlags.cmake')
-rw-r--r-- | config/cmake/HDFCXXCompilerFlags.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/cmake/HDFCXXCompilerFlags.cmake b/config/cmake/HDFCXXCompilerFlags.cmake index f992aa0..0403834 100644 --- a/config/cmake/HDFCXXCompilerFlags.cmake +++ b/config/cmake/HDFCXXCompilerFlags.cmake @@ -179,9 +179,9 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") ADD_H5_FLAGS (H5_CXXFLAGS "${HDF5_SOURCE_DIR}/config/gnu-warnings/cxx-4.8") if (HDF5_ENABLE_DEV_WARNINGS) # Use the C warnings as CXX warnings are the same - ADD_H5_FLAGS (H5_CXXFLAGS "${HDF5_SOURCE_DIR}/config/gnu-warnings/developer-4.8") + ADD_H5_FLAGS (H5_CXXFLAGS "${HDF5_SOURCE_DIR}/config/gnu-warnings/cxx-developer-4.8") else () - ADD_H5_FLAGS (H5_CXXFLAGS "${HDF5_SOURCE_DIR}/config/gnu-warnings/no-developer-4.8") + ADD_H5_FLAGS (H5_CXXFLAGS "${HDF5_SOURCE_DIR}/config/gnu-warnings/no-cxx-developer-4.8") endif () endif () |