COMP: Consistent FetchContent usage

This commit is contained in:
David Allemang
2023-02-04 13:41:14 -05:00
parent 6c3754a3fa
commit 6ade8c8215
9 changed files with 31 additions and 1 deletions

4
vendor/gtest.cmake vendored
View File

@@ -1,8 +1,12 @@
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)