From ffe5fa25245c7e9cab5a5890b1ca2946a1f0023c Mon Sep 17 00:00:00 2001 From: Jeremy <51220084+jeremy-rifkin@users.noreply.github.com> Date: Tue, 12 Sep 2023 13:02:54 -0400 Subject: [PATCH] Fix cmake issue - work around weird bug with parsing the URL --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d06e022..fb9a485 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -513,8 +513,8 @@ if(CPPTRACE_BUILD_SPEEDTEST) include(FetchContent) FetchContent_Declare( googletest - URL https://github.com/google/googletest/archive/03597a01ee50ed33e9dfd640b249b4be3799d395.zip DOWNLOAD_EXTRACT_TIMESTAMP On + URL https://github.com/google/googletest/archive/03597a01ee50ed33e9dfd640b249b4be3799d395.zip ) # For Windows: Prevent overriding the parent project's compiler/linker settings set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)