🎉 Init project set up
This commit is contained in:
commit
27c5a55400
6 changed files with 40 additions and 0 deletions
11
tests/googletest/CMakeLists.txt
Normal file
11
tests/googletest/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# GoogleTest requires at least C++17
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
include(FetchContent)
|
||||
FetchContent_Declare(
|
||||
googletest
|
||||
URL https://github.com/google/googletest/archive/9156d4caac880b513264ecbe0aa4746a3fead3d7.zip
|
||||
)
|
||||
FetchContent_MakeAvailable(googletest)
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue