Files
OpenVulkano/3rdParty/catch2/CMakeLists.txt
2025-06-23 01:11:22 +02:00

14 lines
251 B
CMake

include (FetchContent)
if(NOT DEFINED CATCH_REPO)
set(CATCH_REPO https://github.com/catchorg/Catch2.git)
endif ()
FetchContent_Declare(
Catch2
GIT_REPOSITORY ${CATCH_REPO}
GIT_TAG v3.8.1
GIT_SHALLOW TRUE
)
FetchContent_MakeAvailable(Catch2)