summaryrefslogtreecommitdiff
path: root/bot/CMakeLists.txt
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-07-01 19:24:01 +0500
committerilotterytea <iltsu@alright.party>2025-07-01 19:24:01 +0500
commitfea3c12d6b621796bb239cebb57a5a5014dfe350 (patch)
tree99a0c75b4abb451fe3a0a0cdde0cd7719c3c7fc1 /bot/CMakeLists.txt
parentdf4b0ac45e3ce76159c0bea07a0151d445c73579 (diff)
feat: emotespp dependency
Diffstat (limited to 'bot/CMakeLists.txt')
-rw-r--r--bot/CMakeLists.txt13
1 files changed, 11 insertions, 2 deletions
diff --git a/bot/CMakeLists.txt b/bot/CMakeLists.txt
index abcf8ed..cd74eaf 100644
--- a/bot/CMakeLists.txt
+++ b/bot/CMakeLists.txt
@@ -64,7 +64,7 @@ FetchContent_MakeAvailable(cpr)
FetchContent_Declare(
pqxx
GIT_REPOSITORY https://github.com/jtv/libpqxx.git
- GIT_TAG 7.9.2
+ GIT_TAG 7.10.1
)
FetchContent_MakeAvailable(pqxx)
@@ -72,7 +72,7 @@ FetchContent_MakeAvailable(pqxx)
FetchContent_Declare(
ixwebsocket
GIT_REPOSITORY https://github.com/machinezone/IXWebSocket
- GIT_TAG v11.4.5
+ GIT_TAG v11.4.6
)
FetchContent_MakeAvailable(ixwebsocket)
@@ -86,6 +86,14 @@ FetchContent_Declare(
)
FetchContent_MakeAvailable(sol)
+# emotespp
+FetchContent_Declare(
+ emotespp
+ GIT_REPOSITORY https://git.shungites.casa/emotespp.git
+ GIT_TAG master
+)
+FetchContent_MakeAvailable(emotespp)
+
target_link_libraries(Bot PRIVATE
ixwebsocket::ixwebsocket
pqxx
@@ -93,5 +101,6 @@ target_link_libraries(Bot PRIVATE
cpr::cpr
lua
sol2::sol2
+ emotespp
)