diff options
author | HampusM <hampus@hampusmat.com> | 2022-04-26 20:16:22 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-04-26 20:19:23 +0200 |
commit | d2a87d5803c7aaa9a47791a5a0f1494c19671ebc (patch) | |
tree | 5dcc645cafe5c1986b66b0af0c9a62663c261ecb /test/lib/gtest/CMakeLists.txt | |
parent | dbe0e42817964b700385ac6ed7b7dc2141669e17 (diff) |
add project & make some tweaks
Added from https://git.hampusmat.com/game-of-life
Diffstat (limited to 'test/lib/gtest/CMakeLists.txt')
-rw-r--r-- | test/lib/gtest/CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/lib/gtest/CMakeLists.txt b/test/lib/gtest/CMakeLists.txt new file mode 100644 index 0000000..6582343 --- /dev/null +++ b/test/lib/gtest/CMakeLists.txt @@ -0,0 +1,9 @@ +message(STATUS "Fetching gtest...") + +FetchContent_Declare( + gtest + GIT_REPOSITORY "https://github.com/google/googletest" + GIT_TAG release-1.11.0 +) + +FetchContent_MakeAvailable(gtest) |