diff options
author | Craig Scott <craig.scott@crascit.com> | 2021-10-04 10:46:46 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2021-10-04 10:48:00 (GMT) |
commit | 2a82bd85b66f5de2acaac60159c9b624da37ce37 (patch) | |
tree | 5d42bcecb24c712fea367d414855d876d53d7f8e /Help | |
parent | b3a0bddc4e1c8f1f86078cdffaebbc4c493e4409 (diff) | |
download | CMake-2a82bd85b66f5de2acaac60159c9b624da37ce37.zip CMake-2a82bd85b66f5de2acaac60159c9b624da37ce37.tar.gz CMake-2a82bd85b66f5de2acaac60159c9b624da37ce37.tar.bz2 |
Help: Add documentation for CMAKE_TLS_CAINFO
Diffstat (limited to 'Help')
-rw-r--r-- | Help/command/file.rst | 5 | ||||
-rw-r--r-- | Help/manual/cmake-variables.7.rst | 1 | ||||
-rw-r--r-- | Help/variable/CMAKE_TLS_CAINFO.rst | 9 |
3 files changed, 13 insertions, 2 deletions
diff --git a/Help/command/file.rst b/Help/command/file.rst index 96a55ee..798f507 100644 --- a/Help/command/file.rst +++ b/Help/command/file.rst @@ -1113,8 +1113,9 @@ If neither ``NETRC`` option is given CMake will check variables For ``https://`` URLs CMake must be built with OpenSSL support. ``TLS/SSL`` certificates are not checked by default. Set ``TLS_VERIFY`` to ``ON`` to -check certificates. If neither ``TLS`` option is given CMake will check -variables :variable:`CMAKE_TLS_VERIFY` and ``CMAKE_TLS_CAINFO``, respectively. +check certificates. If neither ``TLS`` option is given, CMake will use the +settings from the :variable:`CMAKE_TLS_VERIFY` and :variable:`CMAKE_TLS_CAINFO` +variables instead. Additional options to ``DOWNLOAD`` are: diff --git a/Help/manual/cmake-variables.7.rst b/Help/manual/cmake-variables.7.rst index 7cfa0c8..63ea5ac 100644 --- a/Help/manual/cmake-variables.7.rst +++ b/Help/manual/cmake-variables.7.rst @@ -247,6 +247,7 @@ Variables that Change Behavior /variable/CMAKE_SYSTEM_LIBRARY_PATH /variable/CMAKE_SYSTEM_PREFIX_PATH /variable/CMAKE_SYSTEM_PROGRAM_PATH + /variable/CMAKE_TLS_CAINFO /variable/CMAKE_TLS_VERIFY /variable/CMAKE_USER_MAKE_RULES_OVERRIDE /variable/CMAKE_WARN_DEPRECATED diff --git a/Help/variable/CMAKE_TLS_CAINFO.rst b/Help/variable/CMAKE_TLS_CAINFO.rst new file mode 100644 index 0000000..fe34335 --- /dev/null +++ b/Help/variable/CMAKE_TLS_CAINFO.rst @@ -0,0 +1,9 @@ +CMAKE_TLS_CAINFO +---------------- + +Specify the default value for the :command:`file(DOWNLOAD)` and +:command:`file(UPLOAD)` commands' ``TLS_CAINFO`` options. +It is unset by default. + +This variable is also used by the :module:`ExternalProject` module +for internal calls to :command:`file(DOWNLOAD)`. |