Files
toddcox-visualize/External/gtest.cmake
David Allemang cdd0e628e1 add gtest
2022-09-15 11:13:43 -04:00

9 lines
228 B
CMake

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)