diff options
author | Brad King <brad.king@kitware.com> | 2024-03-29 15:50:07 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2024-03-30 13:22:04 (GMT) |
commit | 46faaf9667cff75008e91a5e379e7409c9b365c4 (patch) | |
tree | 121d5f37415757655b8d8c305913ec29426f1be1 /Help/envvar | |
parent | 8b0169fe2b807204d606eeabb701e8f410944647 (diff) | |
download | CMake-46faaf9667cff75008e91a5e379e7409c9b365c4.zip CMake-46faaf9667cff75008e91a5e379e7409c9b365c4.tar.gz CMake-46faaf9667cff75008e91a5e379e7409c9b365c4.tar.bz2 |
file(DOWNLOAD|UPLOAD): Add CMAKE_TLS_VERIFY environment variable
Issue: #23608
Diffstat (limited to 'Help/envvar')
-rw-r--r-- | Help/envvar/CMAKE_TLS_VERIFY.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Help/envvar/CMAKE_TLS_VERIFY.rst b/Help/envvar/CMAKE_TLS_VERIFY.rst new file mode 100644 index 0000000..a0ed323 --- /dev/null +++ b/Help/envvar/CMAKE_TLS_VERIFY.rst @@ -0,0 +1,11 @@ +CMAKE_TLS_VERIFY +---------------- + +.. versionadded:: 3.30 + +.. include:: ENV_VAR.txt + +Specify the default value for the :command:`file(DOWNLOAD)` and +:command:`file(UPLOAD)` commands' ``TLS_VERIFY`` option. +This environment variable is used if the option is not given +and the :variable:`CMAKE_TLS_VERIFY` cmake variable is not set. |