mirror of
https://github.com/allemangD/toddcox-visualize.git
synced 2025-11-10 03:52:48 -05:00
13 lines
253 B
CMake
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)
|