Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit c4ee610

Browse files
g-easyBogdan Drutu
authored andcommitted
Unbreak build due to googletest. (#282)
* Just cmake. (revert me) * Pin googletest to before -Werror commit. * Try the -Werror commit. * Revert "Try the -Werror commit." This reverts commit 7991d47. * Revert "Just cmake. (revert me)" This reverts commit 8a9b21e. * Add TODO for unpinning. * format
1 parent 93a91ff commit c4ee610

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cmake/googletest.CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,13 @@ cmake_minimum_required(VERSION 3.5)
1717
project(googletest-download NONE)
1818

1919
include(ExternalProject)
20+
21+
# TODO: Un-pin googletest version, go back to living at HEAD. It's currently
22+
# pinned to a commit right before a build break. Un-pin it once
23+
# https://github.com/google/googletest/issues/2136 is fixed.
2024
externalproject_add(googletest_project
2125
GIT_REPOSITORY https://github.com/abseil/googletest
22-
GIT_TAG "master"
26+
GIT_TAG "ed2fe122f8dc9aca844d724986d1d5cf5b65ea4e"
2327
SOURCE_DIR "${CMAKE_BINARY_DIR}/googletest-src"
2428
BINARY_DIR "${CMAKE_BINARY_DIR}/googletest-build"
2529
UPDATE_COMMAND ""

0 commit comments

Comments
 (0)