From 927e065f9829045247be7c0b3296408b6f577c1f Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 12 Jun 2022 13:44:58 +0200 Subject: feat: add reading RLE files --- lib/CMakeLists.txt | 8 ++++++++ lib/ctre/CMakeLists.txt | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 lib/ctre/CMakeLists.txt (limited to 'lib') diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index 84c5a77..9a18dbe 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -24,6 +24,14 @@ FetchContent_Declare( add_subdirectory(yacppdic) +FetchContent_Declare( + ctre + GIT_REPOSITORY "https://github.com/hanickadot/compile-time-regular-expressions" + GIT_TAG v3.7 +) + +add_subdirectory(ctre) + if(test) FetchContent_Declare( gtest diff --git a/lib/ctre/CMakeLists.txt b/lib/ctre/CMakeLists.txt new file mode 100644 index 0000000..3f2aced --- /dev/null +++ b/lib/ctre/CMakeLists.txt @@ -0,0 +1,3 @@ +message(STATUS "Fetching ctre...") + +FetchContent_MakeAvailable(ctre) -- cgit v1.2.3-18-g5258