aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/CMakeLists.txt16
-rw-r--r--lib/GSL/CMakeLists.txt4
-rw-r--r--lib/doctest/CMakeLists.txt4
-rw-r--r--src/CMakeLists.txt2
4 files changed, 25 insertions, 1 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)
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)
+
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 152272f..3ad9b06 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -57,6 +57,6 @@ endif()
target_include_directories(${PROJECT_NAME} PRIVATE .)
-target_link_libraries_system(${PROJECT_NAME} ctre fmt)
+target_link_libraries_system(${PROJECT_NAME} ctre fmt GSL)
target_link_options(${PROJECT_NAME} PRIVATE -fsanitize=address)