We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbd9fb3 commit d03362aCopy full SHA for d03362a
cmake/external/googletest.cmake
@@ -20,7 +20,12 @@ endif()
20
21
# Note: googletest lives at head and encourages to just point to a head commit.
22
# https://github.com/google/googletest/blob/bf66935e07/README.md?plain=1#L5-L10
23
-set(version main)
+
24
+# Commit 4a00a24fff was chosen because it is the _last_ commit before googletest
25
+# dropped c++14 support, setting the floor to c++17. Once Firebase sets _its_
26
+# floor to c++17, this pinned commit can be moved to a new one.
27
+# See https://github.com/firebase/firebase-ios-sdk/pull/14474.
28
+set(version 4a00a24fff)
29
30
ExternalProject_Add(
31
googletest
0 commit comments