diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2021-07-14 16:31:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-14 16:31:43 (GMT) |
commit | c2e4b89165988b66a4141b17d5a9d0ab1ab0f953 (patch) | |
tree | 51fe79f69f3caa189f26eb211890c193c9ca9fa2 /config | |
parent | 60734e63fe077238f10de3d6ca8f037f9a42af89 (diff) | |
download | hdf5-c2e4b89165988b66a4141b17d5a9d0ab1ab0f953.zip hdf5-c2e4b89165988b66a4141b17d5a9d0ab1ab0f953.tar.gz hdf5-c2e4b89165988b66a4141b17d5a9d0ab1ab0f953.tar.bz2 |
Changes to docs for using plugins (#819)
Diffstat (limited to 'config')
-rwxr-xr-x | config/cmake/HDF5_Examples_options.cmake | 3 | ||||
-rwxr-xr-x | config/cmake/scripts/HDF5config.cmake | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/config/cmake/HDF5_Examples_options.cmake b/config/cmake/HDF5_Examples_options.cmake index b639b19..236a814 100755 --- a/config/cmake/HDF5_Examples_options.cmake +++ b/config/cmake/HDF5_Examples_options.cmake @@ -42,8 +42,11 @@ ### enable JAVA builds #set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF_BUILD_JAVA:BOOL=ON") +############################################################################################# ### enable FILTERS builds #set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF_BUILD_FILTERS:BOOL=ON") +### default HDF5_PLUGIN_PATH to where the filter libraries are located +#set(ENV{HDF5_PLUGIN_PATH} "${INSTALLDIR}/lib/plugin") ############################################################################################# ### enable parallel program builds diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index a5444c8..f253df7 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -11,7 +11,7 @@ # ############################################################################################# ### ${CTEST_SCRIPT_ARG} is of the form OPTION=VALUE ### -### BUILD_GENERATOR required [Unix, VS2017, VS201764, VS2015, VS201564, VS2013, VS201364] ### +### BUILD_GENERATOR required [Unix, VS2019, VS201964, VS2017, VS201764, VS2015, VS201564] ### ### ctest -S HDF5config.cmake,BUILD_GENERATOR=VS201764 -C Release -VV -O hdf5.log ### ############################################################################################# @@ -68,7 +68,7 @@ endif () # build generator must be defined if (NOT DEFINED BUILD_GENERATOR) - message (FATAL_ERROR "BUILD_GENERATOR must be defined - Unix, VS2017, or VS201764, VS2015, VS201564, VS2013, VS201364") + message (FATAL_ERROR "BUILD_GENERATOR must be defined - Unix, VS2019, VS201964, VS2017, or VS201764, VS2015, VS201564") endif () ################################################################### @@ -105,7 +105,7 @@ endif () ######### Following describes compiler ############ if (NOT DEFINED HPC) if (NOT DEFINED BUILD_GENERATOR) - message (FATAL_ERROR "BUILD_GENERATOR must be defined - Unix, VS2017, or VS201764, VS2015, VS201564, VS2013, VS201364") + message (FATAL_ERROR "BUILD_GENERATOR must be defined - Unix, VS2019, VS201964, VS2017, or VS201764, VS2015, VS201564") endif () if (WIN32 AND NOT MINGW) set (SITE_OS_NAME "Windows") |