diff options
| author | ilotterytea <iltsu@alright.party> | 2025-07-22 23:12:52 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-07-22 23:12:52 +0500 |
| commit | 84aebba223b6a8f9eb2d1272c3ed2083d561f2b9 (patch) | |
| tree | 02ae6f5798617074cf6ea095669c15d0ca48a402 /bot/CMakeLists.txt | |
| parent | 8b86e9a8f071a1af5ce1531a9ebd2b2140e73ff7 (diff) | |
feat: RSS support
Diffstat (limited to 'bot/CMakeLists.txt')
| -rw-r--r-- | bot/CMakeLists.txt | 18 |
1 files changed, 18 insertions, 0 deletions
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 ) |
