From 84aebba223b6a8f9eb2d1272c3ed2083d561f2b9 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Tue, 22 Jul 2025 23:12:52 +0500 Subject: feat: RSS support --- bot/CMakeLists.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'bot/CMakeLists.txt') diff --git a/bot/CMakeLists.txt b/bot/CMakeLists.txt index 261e467..c1e14e1 100644 --- a/bot/CMakeLists.txt +++ b/bot/CMakeLists.txt @@ -120,6 +120,22 @@ FetchContent_Declare( ) FetchContent_MakeAvailable(emotespp) +# xml +FetchContent_Declare( + pugixml + GIT_REPOSITORY https://github.com/zeux/pugixml.git + GIT_TAG v1.15 +) +FetchContent_MakeAvailable(pugixml) + +# fmt +FetchContent_Declare( + fmt + GIT_REPOSITORY https://github.com/fmtlib/fmt.git + GIT_TAG 12.1.0 +) +FetchContent_MakeAvailable(fmt) + target_link_libraries(Bot PRIVATE ixwebsocket::ixwebsocket nlohmann_json::nlohmann_json @@ -127,5 +143,7 @@ target_link_libraries(Bot PRIVATE lua sol2::sol2 emotespp + pugixml + fmt ) -- cgit v1.2.3