diff options
author | HampusM <hampus@hampusmat.com> | 2022-03-19 13:16:18 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:56:56 +0200 |
commit | 020303df1410d10546f53d0bfee4f48797d4f067 (patch) | |
tree | 40fada01c1cad3a49892cb04907f852bc6a5d96f /lib/CMakeLists.txt | |
parent | dc6222611ad14a33f642396558ba84ecba9d6605 (diff) |
build: add dependencies GSL & doctest
Diffstat (limited to 'lib/CMakeLists.txt')
-rw-r--r-- | lib/CMakeLists.txt | 16 |
1 files changed, 16 insertions, 0 deletions
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) |