diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CMakeLists.txt | 9 | ||||
-rw-r--r-- | lib/ctre/CMakeLists.txt | 4 |
2 files changed, 13 insertions, 0 deletions
diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt new file mode 100644 index 0000000..16c32fd --- /dev/null +++ b/lib/CMakeLists.txt @@ -0,0 +1,9 @@ +include(FetchContent) + +FetchContent_Declare( + ctre + GIT_REPOSITORY "https://github.com/hanickadot/compile-time-regular-expressions" + GIT_TAG v3.5 +) + +add_subdirectory(ctre) diff --git a/lib/ctre/CMakeLists.txt b/lib/ctre/CMakeLists.txt new file mode 100644 index 0000000..1f05163 --- /dev/null +++ b/lib/ctre/CMakeLists.txt @@ -0,0 +1,4 @@ +message(STATUS "Fetching ctre...") + +FetchContent_MakeAvailable(ctre) + |