diff options
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) |