From 6785b9c74123cb490c5188724cfbeb9ef7f35b1e Mon Sep 17 00:00:00 2001 From: Sainnhe Park Date: Mon, 8 May 2023 17:09:00 +0800 Subject: [PATCH] Fix gtest download url --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f54a234..19dff69 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) include(FetchContent) fetchcontent_declare( googletest - URL https://github.sainnhe.dev/google/googletest/archive/refs/heads/main.zip + URL https://ghproxy.com/https://github.com/google/googletest/archive/refs/heads/main.zip ) # For Windows: Prevent overriding the parent project's compiler/linker settings set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)