diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2021-07-01 21:23:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-01 21:23:11 (GMT) |
commit | 1adf9ad9ea4f48194a4736b4f0cd2b4d1eb75243 (patch) | |
tree | a2f5787509f691ddc29284cdfd9e67c81a49e649 /config/cmake/scripts/HDF5config.cmake | |
parent | 007d5a4b1ecdcc0f3c470060ab3e371e0f10e8f0 (diff) | |
download | hdf5-1adf9ad9ea4f48194a4736b4f0cd2b4d1eb75243.zip hdf5-1adf9ad9ea4f48194a4736b4f0cd2b4d1eb75243.tar.gz hdf5-1adf9ad9ea4f48194a4736b4f0cd2b4d1eb75243.tar.bz2 |
1.12 Update docs with plugins usage and fix version refs (#815)
* Update docs with plugins usage and fix version refs
* Update VS2019 corrections
* Correct version ref
Diffstat (limited to 'config/cmake/scripts/HDF5config.cmake')
-rw-r--r-- | config/cmake/scripts/HDF5config.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index 5c46d5b..7a60a1b 100644 --- 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") |