From 6e3e3bbf0d031f60eaf242474d47d14ed7c4fca5 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sat, 18 May 2024 21:48:15 +0500 Subject: feat: added maddy dependency --- CMakeLists.txt | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 2bd6745..2580a92 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -88,5 +88,14 @@ if (BUILD_WEB) ) FetchContent_MakeAvailable(crow) + # markdown parser + FetchContent_Declare( + maddy + GIT_REPOSITORY https://github.com/progsource/maddy.git + GIT_TAG 1.3.0 + ) + FetchContent_MakeAvailable(maddy) + target_include_directories(Web PRIVATE ${crow_SOURCE_DIR}/include) + target_link_libraries(Web PRIVATE maddy) endif() -- cgit v1.2.3