diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2014-09-03 17:12:52 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2014-09-03 17:12:52 (GMT) |
commit | c23f3a7ea577b66f103ab06e9310e819c13f5401 (patch) | |
tree | 5fd6bbaf00a3973ea0d0e591d9b6256b687c91a2 /release_docs | |
parent | 2154d1c6f1b791a2ba9125a48a098fd4da42f01f (diff) | |
download | hdf5-c23f3a7ea577b66f103ab06e9310e819c13f5401.zip hdf5-c23f3a7ea577b66f103ab06e9310e819c13f5401.tar.gz hdf5-c23f3a7ea577b66f103ab06e9310e819c13f5401.tar.bz2 |
[svn-r25569] Added option to build tools static when building shared libraries. This will prevent 'dll' being appended to the tool name on windows. See HDFFV-8292.
Tested: local linux
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/INSTALL_CMake.txt | 1 | ||||
-rw-r--r-- | release_docs/RELEASE.txt | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/release_docs/INSTALL_CMake.txt b/release_docs/INSTALL_CMake.txt index 31e3917..29c542a 100644 --- a/release_docs/INSTALL_CMake.txt +++ b/release_docs/INSTALL_CMake.txt @@ -554,6 +554,7 @@ HDF5_BUILD_EXAMPLES "Build HDF5 Library Examples" OFF HDF5_BUILD_FORTRAN "Build FORTRAN support" OFF HDF5_BUILD_HL_LIB "Build HIGH Level HDF5 Library" OFF HDF5_BUILD_TOOLS "Build HDF5 Tools" OFF +ONLY_STATIC_TOOLS "Build Only Static Tools" OFF if (HDF5_BUILD_FORTRAN) HDF5_ENABLE_F2003 "Enable FORTRAN 2003 Standard" OFF diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index b990342..665fc51 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -41,6 +41,10 @@ New Features Configuration: ------------- + - CMake: Added option to build only tools static. This can be used when building + the libraries as shared. For release binaries on Windows, this option prevents + the tools being named with 'dll' being appended, see HDFFV-8292 + (ADB 2014/09/03) - Autotools: Automake updated to 1.14.1 (ADB - 2014/04/08) - CMake: Moved minimum CMake version to 2.8.11 which enables better library include processing. (ADB - 2014/03/26) |