summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-07-10 15:33:40 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-07-10 15:33:40 (GMT)
commit4c8e3573a7387db8cb8292c9207d528b9497a4c7 (patch)
tree25ea4236c0558aa025087e4cadd34bf7f509bced
parentc43323a06d678604a363dc264c4c0ce4816ab049 (diff)
downloadhdf5-4c8e3573a7387db8cb8292c9207d528b9497a4c7.zip
hdf5-4c8e3573a7387db8cb8292c9207d528b9497a4c7.tar.gz
hdf5-4c8e3573a7387db8cb8292c9207d528b9497a4c7.tar.bz2
Fix CMake module include and note text
-rw-r--r--config/cmake_ext_mod/FindSZIP.cmake2
-rw-r--r--release_docs/RELEASE.txt8
2 files changed, 5 insertions, 5 deletions
diff --git a/config/cmake_ext_mod/FindSZIP.cmake b/config/cmake_ext_mod/FindSZIP.cmake
index 152f8ac..b84d768 100644
--- a/config/cmake_ext_mod/FindSZIP.cmake
+++ b/config/cmake_ext_mod/FindSZIP.cmake
@@ -57,7 +57,7 @@ endforeach()
if(NOT SZIP_LIBRARY)
find_library(SZIP_LIBRARY_RELEASE NAMES ${szip_names})
find_library(SZIP_LIBRARY_DEBUG NAMES ${szip_names_debug})
- include(${CMAKE_CURRENT_LIST_DIR}/SelectLibraryConfigurations.cmake)
+ include(SelectLibraryConfigurations)
select_library_configurations(SZIP)
mark_as_advanced(SZIP_LIBRARY_RELEASE SZIP_LIBRARY_DEBUG)
endif()
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index c1ebba9..7070b31 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -67,11 +67,11 @@ New Features
(ADB - 2019/06/12, HDFFV-10805)
- Add options to enable or disable building tools and tests
-
- Configure options --enable-tests and --enable-tools were added for
+
+ Configure options --enable-tests and --enable-tools were added for
autotools configure. These options are enabled by default, and can be
- disabled with either --disable-tests (or tools) or --enable-tests=no
- (or --enable-tools=no). Build time is reduced ~20% when tools are
+ disabled with either --disable-tests (or tools) or --enable-tests=no
+ (or --enable-tools=no). Build time is reduced ~20% when tools are
disabled, 35% when tests are disabled, 45% when both are disabled.
Reenabling them after the initial build requires running configure
again with the option(s) enabled.