From d4d3ab9b361538b06e11811adba010d98d7b379b Mon Sep 17 00:00:00 2001 From: Abtin Rohami <98800010+arohami@users.noreply.github.com> Date: Sat, 15 Jul 2023 12:27:06 +0330 Subject: [PATCH] build: Update CMakeLists.txt.googletest replace "master" branch for cloning googletest with "main" as master branch does not exist anymore --- CMakeLists.txt.googletest | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt.googletest b/CMakeLists.txt.googletest index f98ccb4..37b622b 100644 --- a/CMakeLists.txt.googletest +++ b/CMakeLists.txt.googletest @@ -5,11 +5,11 @@ project(googletest-download NONE) include(ExternalProject) ExternalProject_Add(googletest GIT_REPOSITORY https://github.com/google/googletest.git - GIT_TAG master + GIT_TAG main SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-src" BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-build" CONFIGURE_COMMAND "" BUILD_COMMAND "" INSTALL_COMMAND "" TEST_COMMAND "" -) \ No newline at end of file +)