9 lines
177 B
CMake
9 lines
177 B
CMake
|
include(FetchContent)
|
||
|
FetchContent_Declare(
|
||
|
Catch2
|
||
|
GIT_REPOSITORY https://github.com/catchorg/Catch2.git
|
||
|
GIT_TAG v3.5.0
|
||
|
)
|
||
|
|
||
|
FetchContent_MakeAvailable(Catch2)
|