8 lines
182 B
CMake
8 lines
182 B
CMake
Include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
Catch2
|
|
GIT_REPOSITORY https://github.com/catchorg/Catch2.git
|
|
GIT_TAG v2.13.7)
|
|
FetchContent_MakeAvailable(Catch2)
|