diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2021-05-24 13:55:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-24 13:55:08 (GMT) |
commit | 62a5443bd798dd2b4c4deba2cbb0bd8646196e7d (patch) | |
tree | e980209549c5b2e4089d164c6ecf3798e175520b /release_docs/RELEASE.txt | |
parent | bee09040d39d265d28b230735e28c3603a5da217 (diff) | |
download | hdf5-62a5443bd798dd2b4c4deba2cbb0bd8646196e7d.zip hdf5-62a5443bd798dd2b4c4deba2cbb0bd8646196e7d.tar.gz hdf5-62a5443bd798dd2b4c4deba2cbb0bd8646196e7d.tar.bz2 |
Various CMake changes (#679)
* Committing clang-format changes
* Several CMake updates:
* Removes unused HDF5_ENABLE_HSIZET
* Switches TEST_SHELL_SCRIPTS to ON
* Sets SH_PROGRAM to bash instead of sh
* Set default build type back to RelWithDebInfo
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'release_docs/RELEASE.txt')
-rw-r--r-- | release_docs/RELEASE.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 1b920af..578c4b4 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -49,6 +49,22 @@ New Features Configuration: ------------- + - CMake will now run the shell script tests in test/ by default + + The test directory includes several shell script tests that previously + were not run by CMake. These are now run by default. TEST_SHELL_SCRIPTS + has been set to ON and SH_PROGRAM has been set to bash (some test + scripts use bash-isms). Platforms without bash (e.g., Windows) will + ignore the script tests. + + (DER - 2021/05/23) + + - Removed unused HDF5_ENABLE_HSIZET option from CMake + + This has been unused for some time and has no effect. + + (DER - 2021/05/23) + - CMake no longer builds the C++ library by default HDF5_BUILD_CPP_LIB now defaults to OFF, which is in line with the |