Files
toddcox-visualize/vendor/gtest.cmake
2023-02-04 13:41:14 -05:00

13 lines
253 B
CMake

include(FetchContent)
FetchContent_Declare(
gtest
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG release-1.12.1
GIT_PROGRESS TRUE
)
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
FetchContent_MakeAvailable(gtest)