diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2021-04-20 11:55:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-20 11:55:05 (GMT) |
commit | fc5c567fdce94765c9db904295ca8879a8e91752 (patch) | |
tree | 91879906198b94a23324ed9fc6d989c981bfacda /release_docs | |
parent | d3384b2e8e5fafd9f3aa90e738ca18d5ddeeb3c1 (diff) | |
download | hdf5-fc5c567fdce94765c9db904295ca8879a8e91752.zip hdf5-fc5c567fdce94765c9db904295ca8879a8e91752.tar.gz hdf5-fc5c567fdce94765c9db904295ca8879a8e91752.tar.bz2 |
CMake no longer builds the C++ library by default (#555)
* Committing clang-format changes
* CMake no longer builds C++ library by default
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/INSTALL_CMake.txt | 2 | ||||
-rw-r--r-- | release_docs/RELEASE.txt | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/release_docs/INSTALL_CMake.txt b/release_docs/INSTALL_CMake.txt index f42f780..6f30f45 100644 --- a/release_docs/INSTALL_CMake.txt +++ b/release_docs/INSTALL_CMake.txt @@ -734,7 +734,7 @@ BUILD_STATIC_EXECS "Build Static Executables" OFF BUILD_TESTING "Build HDF5 Unit Testing" ON ---------------- HDF5 Build Options --------------------- -HDF5_BUILD_CPP_LIB "Build HDF5 C++ Library" ON +HDF5_BUILD_CPP_LIB "Build HDF5 C++ Library" OFF HDF5_BUILD_EXAMPLES "Build HDF5 Library Examples" ON HDF5_BUILD_FORTRAN "Build FORTRAN support" OFF HDF5_BUILD_JAVA "Build JAVA support" OFF diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index edf39f8..359f222 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -49,6 +49,13 @@ New Features Configuration: ------------- + - CMake no longer builds the C++ library by default + + HDF5_BUILD_CPP_LIB now defaults to OFF, which is in line with the + Autotools build defaults. + + (DER - 2021/04/20) + - Removal of pre-VS2015 work-arounds HDF5 now requires Visual Studio 2015 or greater, so old work-around |