mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-02-25 22:50:05 +00:00
14 lines
245 B
CMake
14 lines
245 B
CMake
CMAKE_MINIMUM_REQUIRED(VERSION 3.11)
|
|
|
|
|
|
if (NOT Catch2_FOUND)
|
|
Include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
Catch2
|
|
GIT_REPOSITORY https://github.com/catchorg/Catch2.git
|
|
GIT_TAG v2.13.1)
|
|
|
|
FetchContent_MakeAvailable(Catch2)
|
|
endif()
|