allow upstream projects to override tlsuv version (#985)

This commit is contained in:
Shawn Carey
2026-01-27 11:53:54 -05:00
committed by GitHub
parent 8218507c63
commit 400af4c105
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -13,6 +13,7 @@ set(PROJECT_VERSION ${GIT_VERSION})
include(cmake/variables.cmake)
set(tlsuv_DIR "" CACHE FILEPATH "developer option: use local tlsuv checkout")
set(tlsuv_VERSION "v0.40.6" CACHE STRING "developer option: tlsuv branch or tag to use (if tlsuv_DIR is unset)")
message("project version: ${PROJECT_VERSION}")
message("git info:")
+1 -1
View File
@@ -9,7 +9,7 @@ if (NOT TARGET tlsuv)
else ()
FetchContent_Declare(tlsuv
GIT_REPOSITORY https://github.com/openziti/tlsuv.git
GIT_TAG v0.40.6
GIT_TAG ${tlsuv_VERSION}
)
FetchContent_MakeAvailable(tlsuv)
endif (tlsuv_DIR)