Skip to content

Commit

Permalink
modified link to googletest using repo w/ tag instead of direct link
Browse files Browse the repository at this point in the history
  • Loading branch information
riasc committed Jul 23, 2024
1 parent d12d05e commit 86a92d6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ target_include_directories(IBPTree PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include")
include(FetchContent)
FetchContent_Declare(
googletest
https://github.com/google/googletest/archive/refs/tags/v1.15.0.zip
DOWNLOAD_EXTRACT_TIMESTAMP true
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG v1.15.0
)
#https://github.com/google/googletest/archive/refs/tags/v1.15.0.zip
#DOWNLOAD_EXTRACT_TIMESTAMP true
FetchContent_MakeAvailable(googletest)
enable_testing() # enable the testing framework
include(GoogleTest)
Expand Down

0 comments on commit 86a92d6

Please sign in to comment.