Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake/GoogleTest-CMakeLists.txt.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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_BINARY_DIR}/googletest-src"
BINARY_DIR "${CMAKE_BINARY_DIR}/googletest-build"
CONFIGURE_COMMAND ""
Expand Down
2 changes: 1 addition & 1 deletion deps/install-deps-osx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ cd googletest
git init
git remote add origin https://github.com/google/googletest
git fetch origin
git checkout -b master --track origin/master
git checkout -b main --track origin/main

mkdir -p build
cd build
Expand Down
2 changes: 1 addition & 1 deletion deps/install-deps-win32.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ cd vcpkg
git init
git remote add origin https://github.com/microsoft/vcpkg.git
git fetch origin
git checkout -b master --track origin/master
git checkout -b main --track origin/main

cmd /C bootstrap-vcpkg.bat

Expand Down