mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
Add a `TLS_VERSION` option and honor `CMAKE_TLS_VERSION` variables. Also map the version to Git options as we already do for `TLS_VERIFY`. Issue: #25701
5 lines
142 B
CMake
5 lines
142 B
CMake
include(ExternalProject)
|
|
set(ENV{CMAKE_TLS_VERSION} bad-env)
|
|
set(CMAKE_TLS_VERSION bad-var)
|
|
ExternalProject_Add(MyProj GIT_REPOSITORY "fake")
|