diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2024-01-03 17:23:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-03 17:23:42 (GMT) |
commit | 72e33ad7727765fd162a1f70ca502cc2437aabde (patch) | |
tree | 84b4cff56687fa7a8d443a529984932dd30a7fa4 /release_docs | |
parent | 95827bc79d592ad5aa71ec3199a83ede9b324c20 (diff) | |
download | hdf5-72e33ad7727765fd162a1f70ca502cc2437aabde.zip hdf5-72e33ad7727765fd162a1f70ca502cc2437aabde.tar.gz hdf5-72e33ad7727765fd162a1f70ca502cc2437aabde.tar.bz2 |
Merge examples and workflows from develop (#3918)
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/INSTALL_CMake.txt | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/release_docs/INSTALL_CMake.txt b/release_docs/INSTALL_CMake.txt index 230c501..e27f74b 100644 --- a/release_docs/INSTALL_CMake.txt +++ b/release_docs/INSTALL_CMake.txt @@ -299,8 +299,11 @@ IV. Further considerations options: HDF5_ALLOW_EXTERNAL_SUPPORT:STRING="GIT" ZLIB_GIT_URL:STRING="https://some_location/zlib" + ZLIB_GIT_BRANCH="some_branch" SZIP_GIT_URL:STRING="https://some_location/szip" - where "some_location" is the URL to the GIT repository. Also set + SZIP_GIT_BRANCH="some_branch" + where "some_location" is the URL to the GIT repository and "some_branch" is + a branch in the repository, usually the default. Also set CMAKE_BUILD_TYPE to the configuration type. C. Use source packages from a compressed file by adding the following @@ -338,7 +341,9 @@ IV. Further considerations options: HDF5_ALLOW_EXTERNAL_SUPPORT:STRING="GIT" PLUGIN_GIT_URL:STRING="http://some_location/plugins" - where "some_location" is the URL to the GIT repository. Also set + PLUGIN_GIT_BRANCH="some_branch" + where "some_location" is the URL to the GIT repository and "some_branch" is + a branch in the repository, usually the default. Also set CMAKE_BUILD_TYPE to the configuration type. B. Use source packages from a compressed file by adding the following @@ -686,11 +691,15 @@ These five steps are described in detail below. configuration option: -DHDF5_ALLOW_EXTERNAL_SUPPORT:STRING="GIT" - The options to control the GIT URL (config/cmake/cacheinit.cmake file) are: + The options to control the GIT parameters (config/cmake/cacheinit.cmake file) are: ZLIB_GIT_URL:STRING="http://${git_url}/zlib" + ZLIB_GIT_BRANCH="${git_branch}" SZIP_GIT_URL:STRING="http://${git_url}/szip" + SZIP_GIT_BRANCH="${git_branch}" PLUGIN_GIT_URL:STRING="http://${git_url}/plugin" - ${git_url} should be changed to your location. Also define CMAKE_BUILD_TYPE + PLUGIN_GIT_BRANCH="${git_branch}" + ${git_url} should be changed to your location and ${git_branch} is + your branch in the repository. Also define CMAKE_BUILD_TYPE to be the configuration type. 3.2.2 Or the external libraries (zlib, szip and plugins) can be configured |