diff options
author | Brad King <brad.king@kitware.com> | 2017-10-19 13:27:22 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2017-10-19 13:27:43 (GMT) |
commit | 358ceee5d84723f60c2db5cdff52445d478d6a42 (patch) | |
tree | dd5348a6b863c3ad92577376b4d9969d27eb5d30 /Help/variable | |
parent | d20927533014312ae4b6ef6c1a3da5daf4e60618 (diff) | |
parent | d45aa38a068ef38331b5dab195c42502e3829eb0 (diff) | |
download | CMake-358ceee5d84723f60c2db5cdff52445d478d6a42.zip CMake-358ceee5d84723f60c2db5cdff52445d478d6a42.tar.gz CMake-358ceee5d84723f60c2db5cdff52445d478d6a42.tar.bz2 |
Merge topic 'curl_netrc_options'
d45aa38a Add dev notes for topic 'curl_netrc_options'
60c272b6 ExternalProject: Add support for NETRC and NETRC_FILE suboption
754e39dd Add testcases for file(DOWNLOAD|UPLOAD) netrc options
5d67e902 file(DOWNLOAD|UPLOAD): Add 'NETRC' and 'NETRC_FILE' suboption
Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Ruslan Baratov <ruslan_baratov@yahoo.com>
Merge-request: !1376
Diffstat (limited to 'Help/variable')
-rw-r--r-- | Help/variable/CMAKE_NETRC.rst | 9 | ||||
-rw-r--r-- | Help/variable/CMAKE_NETRC_FILE.rst | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/Help/variable/CMAKE_NETRC.rst b/Help/variable/CMAKE_NETRC.rst new file mode 100644 index 0000000..52f857e --- /dev/null +++ b/Help/variable/CMAKE_NETRC.rst @@ -0,0 +1,9 @@ +CMAKE_NETRC +----------- + +This variable is used to initialize the ``NETRC`` option for +:command:`file(DOWNLOAD)` and :command:`file(DOWNLOAD)` commands and the +module :module:`ExternalProject`. See those commands for additional +information. + +The local option takes precedence over this variable. diff --git a/Help/variable/CMAKE_NETRC_FILE.rst b/Help/variable/CMAKE_NETRC_FILE.rst new file mode 100644 index 0000000..1508f1e --- /dev/null +++ b/Help/variable/CMAKE_NETRC_FILE.rst @@ -0,0 +1,9 @@ +CMAKE_NETRC_FILE +---------------- + +This variable is used to initialize the ``NETRC_FILE`` option for +:command:`file(DOWNLOAD)` and :command:`file(DOWNLOAD)` commands and the +module :module:`ExternalProject`. See those commands for additional +information. + +The local option takes precedence over this variable. |