We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8c2eb7 commit f81b922Copy full SHA for f81b922
1 file changed
cmake/dependencies/gtest.cmake
@@ -1,14 +1,14 @@
1
option(ROAR_EXTERNAL_GTEST "Use an external gtest library (provide it manually)" OFF)
2
set(ROAR_GTEST_GIT_REPOSITORY "https://github.com/google/googletest.git" CACHE STRING "The URL from which to clone the gtest repository")
3
-set(ROAR_GTEST_GIT_TAG "release-1.11.0" CACHE STRING "The git tag or commit hash to checkout from the gtest repository")
+set(ROAR_GTEST_GIT_TAG "v1.17.0" CACHE STRING "The git tag or commit hash to checkout from the gtest repository")
4
5
if (${ROAR_EXTERNAL_GTEST})
6
else()
7
include(FetchContent)
8
FetchContent_Declare(
9
googletest
10
GIT_REPOSITORY https://github.com/google/googletest.git
11
- GIT_TAG release-1.11.0
+ GIT_TAG v1.17.0
12
)
13
14
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
0 commit comments