From 9fa336e68eccb7f37c0bdbe8c6490333ac3345a5 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Tue, 13 Sep 2022 11:15:45 +0100 Subject: [PATCH] cmake: http -> https where applicable Note that the GNUInstallDirs is vendored so is unchanged. Signed-off-by: Emil Velikov --- CMakeLists.txt | 2 +- cmake/Modules/WaffleDefineCompilerFlags.cmake | 4 ++-- cmake/Modules/WaffleDefineVersion.cmake | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 04ea68c..2c9c150 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -216,7 +216,7 @@ if (MINGW) endif () endif () -# See http://www.vtk.org/Wiki/CMake:CPackPackageGenerators +# See https://www.vtk.org/Wiki/CMake:CPackPackageGenerators if (WIN32) set (CPACK_GENERATOR "ZIP") else () diff --git a/cmake/Modules/WaffleDefineCompilerFlags.cmake b/cmake/Modules/WaffleDefineCompilerFlags.cmake index 74d2581..90a8df0 100644 --- a/cmake/Modules/WaffleDefineCompilerFlags.cmake +++ b/cmake/Modules/WaffleDefineCompilerFlags.cmake @@ -76,7 +76,7 @@ if (NOT MSVC) endif() else() # XXX: and update the threads code - # http://msdn.microsoft.com/en-us/library/aa383745.aspx + # https://msdn.microsoft.com/en-us/library/aa383745.aspx if(CMAKE_GENERATOR_TOOLSET MATCHES "_xp$") # Windows XP add_definitions(-D_WIN32_WINNT=0x0501 -DWINVER=0x0501) @@ -89,7 +89,7 @@ else() add_definitions(-D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS) # Use static runtime - # http://www.cmake.org/Wiki/CMake_FAQ#How_can_I_build_my_MSVC_application_with_a_static_runtime.3F + # https://www.cmake.org/Wiki/CMake_FAQ#How_can_I_build_my_MSVC_application_with_a_static_runtime.3F foreach(flag_var CMAKE_C_FLAGS CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_RELEASE CMAKE_C_FLAGS_MINSIZEREL CMAKE_C_FLAGS_RELWITHDEBINFO ) diff --git a/cmake/Modules/WaffleDefineVersion.cmake b/cmake/Modules/WaffleDefineVersion.cmake index 0bdd282..c3ecd09 100644 --- a/cmake/Modules/WaffleDefineVersion.cmake +++ b/cmake/Modules/WaffleDefineVersion.cmake @@ -28,7 +28,7 @@ # Runtime Project. The scheme allows multiple versions of a library and its # headers to be installed in parallel. # -# [1] http://apr.apache.org/versioning.html +# [1] https://apr.apache.org/versioning.html # # -- 2.11.4.GIT