aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/CMakeLists.txt9
-rw-r--r--lib/backward/CMakeLists.txt3
2 files changed, 12 insertions, 0 deletions
diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt
index 9a18dbe..b42daad 100644
--- a/lib/CMakeLists.txt
+++ b/lib/CMakeLists.txt
@@ -32,6 +32,15 @@ FetchContent_Declare(
add_subdirectory(ctre)
+FetchContent_Declare(
+ backward
+ GIT_REPOSITORY "https://github.com/bombela/backward-cpp"
+ GIT_TAG v1.6
+)
+
+add_subdirectory(backward)
+
+
if(test)
FetchContent_Declare(
gtest
diff --git a/lib/backward/CMakeLists.txt b/lib/backward/CMakeLists.txt
new file mode 100644
index 0000000..730ca1c
--- /dev/null
+++ b/lib/backward/CMakeLists.txt
@@ -0,0 +1,3 @@
+message(STATUS "Fetching Backward...")
+
+FetchContent_MakeAvailable(backward)