summaryrefslogtreecommitdiffstats
path: root/Help/variable
diff options
context:
space:
mode:
authorscivision <scivision@users.noreply.github.com>2024-03-05 21:56:27 (GMT)
committerBrad King <brad.king@kitware.com>2024-03-07 14:42:45 (GMT)
commit53a542936e6c57047d3de3e301c29522fb35ad21 (patch)
treebbd681e30b5215b80a054af577364dbd31a40f52 /Help/variable
parentdd8e84a8facbea761d95dc91c15d8d21e848cd6f (diff)
downloadCMake-53a542936e6c57047d3de3e301c29522fb35ad21.zip
CMake-53a542936e6c57047d3de3e301c29522fb35ad21.tar.gz
CMake-53a542936e6c57047d3de3e301c29522fb35ad21.tar.bz2
Help: Convert http URLs to https
Diffstat (limited to 'Help/variable')
-rw-r--r--Help/variable/CMAKE_PROJECT_HOMEPAGE_URL.rst10
-rw-r--r--Help/variable/CTEST_COVERAGE_COMMAND.rst2
2 files changed, 6 insertions, 6 deletions
diff --git a/Help/variable/CMAKE_PROJECT_HOMEPAGE_URL.rst b/Help/variable/CMAKE_PROJECT_HOMEPAGE_URL.rst
index 4c5debe..f82df2f 100644
--- a/Help/variable/CMAKE_PROJECT_HOMEPAGE_URL.rst
+++ b/Help/variable/CMAKE_PROJECT_HOMEPAGE_URL.rst
@@ -15,22 +15,22 @@ the following top level CMakeLists.txt:
.. code-block:: cmake
cmake_minimum_required(VERSION 3.0)
- project(First HOMEPAGE_URL "http://first.example.com")
- project(Second HOMEPAGE_URL "http://second.example.com")
+ project(First HOMEPAGE_URL "https://first.example.com")
+ project(Second HOMEPAGE_URL "https://second.example.com")
add_subdirectory(sub)
- project(Third HOMEPAGE_URL "http://third.example.com")
+ project(Third HOMEPAGE_URL "https://third.example.com")
And ``sub/CMakeLists.txt`` with the following contents:
.. code-block:: cmake
- project(SubProj HOMEPAGE_URL "http://subproj.example.com")
+ project(SubProj HOMEPAGE_URL "https://subproj.example.com")
message("CMAKE_PROJECT_HOMEPAGE_URL = ${CMAKE_PROJECT_HOMEPAGE_URL}")
The most recently seen :command:`project` command from the top level
CMakeLists.txt would be ``project(Second ...)``, so this will print::
- CMAKE_PROJECT_HOMEPAGE_URL = http://second.example.com
+ CMAKE_PROJECT_HOMEPAGE_URL = https://second.example.com
To obtain the homepage URL from the most recent call to :command:`project` in
the current directory scope or above, see the :variable:`PROJECT_HOMEPAGE_URL`
diff --git a/Help/variable/CTEST_COVERAGE_COMMAND.rst b/Help/variable/CTEST_COVERAGE_COMMAND.rst
index f5425cb..3df2262 100644
--- a/Help/variable/CTEST_COVERAGE_COMMAND.rst
+++ b/Help/variable/CTEST_COVERAGE_COMMAND.rst
@@ -59,4 +59,4 @@ The rest of the supplied arguments consist of the full paths to the
``/src/main/java`` directories of each module within the source tree. These
directories are needed and should not be forgotten.
-.. _`Cobertura`: http://cobertura.github.io/cobertura/
+.. _`Cobertura`: https://cobertura.github.io/cobertura/