diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2023-04-13 17:36:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-13 17:36:48 (GMT) |
commit | 2ecfba97ddb728aaf977c75972efe6bd451673a4 (patch) | |
tree | 18d10413db6df498908939882aa7659c342a555c /config/cmake/UserMacros | |
parent | 526d0d70e65115b075f376db6a6f61c237bc8acf (diff) | |
download | hdf5-2ecfba97ddb728aaf977c75972efe6bd451673a4.zip hdf5-2ecfba97ddb728aaf977c75972efe6bd451673a4.tar.gz hdf5-2ecfba97ddb728aaf977c75972efe6bd451673a4.tar.bz2 |
Identify some options as advanced (#2717)
* Identify some options as advanced
Add explicit option statement to set default for CMake option
* Revert advanced setting for file locks
Diffstat (limited to 'config/cmake/UserMacros')
-rw-r--r-- | config/cmake/UserMacros/Windows_MT.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/cmake/UserMacros/Windows_MT.cmake b/config/cmake/UserMacros/Windows_MT.cmake index 15cffba..c8edbe4 100644 --- a/config/cmake/UserMacros/Windows_MT.cmake +++ b/config/cmake/UserMacros/Windows_MT.cmake @@ -47,6 +47,7 @@ endmacro () #----------------------------------------------------------------------------- option (BUILD_STATIC_CRT_LIBS "Build With Static CRT Libraries" OFF) +mark_as_advanced (BUILD_STATIC_CRT_LIBS) if (BUILD_STATIC_CRT_LIBS) TARGET_STATIC_CRT_FLAGS () endif () |