Skip to content
Snippets Groups Projects
Commit 32ffa20e authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

CMakeLists.txt: build gtest from a stable branch instead of master

parent 3fb21bda
No related branches found
No related tags found
1 merge request!89To/matrices adaptive csr
......@@ -12,7 +12,9 @@ project(googletest-download NONE)
include(ExternalProject)
ExternalProject_Add(googletest
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG master
#GIT_TAG master
# build from a stable branch instead of master (which gets broken pretty often)
GIT_TAG v1.10.x
SOURCE_DIR "${CMAKE_BINARY_DIR}/googletest-src"
BINARY_DIR "${CMAKE_BINARY_DIR}/googletest-build"
CONFIGURE_COMMAND ""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment