From 020303df1410d10546f53d0bfee4f48797d4f067 Mon Sep 17 00:00:00 2001 From: HampusM Date: Sat, 19 Mar 2022 13:16:18 +0100 Subject: build: add dependencies GSL & doctest --- lib/CMakeLists.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'lib/CMakeLists.txt') diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index 58dfd29..9f07eb4 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -15,3 +15,19 @@ FetchContent_Declare( ) add_subdirectory(fmt) + +FetchContent_Declare( + GSL + GIT_REPOSITORY "https://github.com/Microsoft/GSL" + GIT_TAG v4.0.0 +) + +add_subdirectory(GSL) + +FetchContent_Declare( + doctest + GIT_REPOSITORY "https://github.com/doctest/doctest" + GIT_TAG v2.4.8 +) + +add_subdirectory(doctest) -- cgit v1.2.3-18-g5258