diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2022-12-21 18:07:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-21 18:07:25 (GMT) |
commit | 9f5cf0a45748fcb7ced4f4619d7c6c76cb3f67ab (patch) | |
tree | 2f237d0865fa37db7ad56d7182978db4258488fa /config/cmake | |
parent | 976e8c97504cfbce40c565b02a01d29006350c6b (diff) | |
download | hdf5-9f5cf0a45748fcb7ced4f4619d7c6c76cb3f67ab.zip hdf5-9f5cf0a45748fcb7ced4f4619d7c6c76cb3f67ab.tar.gz hdf5-9f5cf0a45748fcb7ced4f4619d7c6c76cb3f67ab.tar.bz2 |
H5F_LIBVER_LATEST changes for move to 1.15 (#2288)
* H5F_LIBVER_LATEST changes for move to 1.15
* Add new default api check
* Format fixes
* Fix default configure
* fix lib version tests
* Fix another version variable
* Add 1.14 doc link
Diffstat (limited to 'config/cmake')
-rw-r--r-- | config/cmake/H5pubconf.h.in | 3 | ||||
-rw-r--r-- | config/cmake/scripts/HDF5config.cmake | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/config/cmake/H5pubconf.h.in b/config/cmake/H5pubconf.h.in index c1b051f..da23cb3 100644 --- a/config/cmake/H5pubconf.h.in +++ b/config/cmake/H5pubconf.h.in @@ -632,6 +632,9 @@ /* Define using v1.14 public API symbols by default */ #cmakedefine H5_USE_114_API_DEFAULT @H5_USE_114_API_DEFAULT@ +/* Define using v1.16 public API symbols by default */ +#cmakedefine H5_USE_116_API_DEFAULT @H5_USE_116_API_DEFAULT@ + /* Define if the library will use file locking */ #cmakedefine H5_USE_FILE_LOCKING @H5_USE_FILE_LOCKING@ diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index 71223cb..2fbb26c 100644 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -37,8 +37,8 @@ cmake_minimum_required (VERSION 3.18) # CTEST_SOURCE_NAME - source folder ############################################################################## -set (CTEST_SOURCE_VERSION "1.13.4") -set (CTEST_SOURCE_VERSEXT "-1") +set (CTEST_SOURCE_VERSION "1.15.0") +set (CTEST_SOURCE_VERSEXT "") ############################################################################## # handle input parameters to script. |