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 ++++++++++++++++ lib/GSL/CMakeLists.txt | 4 ++++ lib/doctest/CMakeLists.txt | 4 ++++ 3 files changed, 24 insertions(+) create mode 100644 lib/GSL/CMakeLists.txt create mode 100644 lib/doctest/CMakeLists.txt (limited to 'lib') 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) diff --git a/lib/GSL/CMakeLists.txt b/lib/GSL/CMakeLists.txt new file mode 100644 index 0000000..ecc7b69 --- /dev/null +++ b/lib/GSL/CMakeLists.txt @@ -0,0 +1,4 @@ +message(STATUS "Fetching GSL...") + +FetchContent_MakeAvailable(GSL) + diff --git a/lib/doctest/CMakeLists.txt b/lib/doctest/CMakeLists.txt new file mode 100644 index 0000000..0ca5267 --- /dev/null +++ b/lib/doctest/CMakeLists.txt @@ -0,0 +1,4 @@ +message(STATUS "Fetching doctest...") + +FetchContent_MakeAvailable(doctest) + -- cgit v1.2.3-18-g5258