summaryrefslogtreecommitdiff
path: root/bot/CMakeLists.txt
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-04-18 16:25:28 +0500
committerilotterytea <iltsu@alright.party>2025-04-18 16:25:28 +0500
commit9b1a11e8fee33abb933aa3836faf60cc14deb68d (patch)
treeb94a90a53f89e62e4aac770d97ead73a97072d76 /bot/CMakeLists.txt
parent4827c87c986d217a940ce87cc31245440d6b1ab6 (diff)
feat: betterttv clients (experimental)
Diffstat (limited to 'bot/CMakeLists.txt')
-rw-r--r--bot/CMakeLists.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/bot/CMakeLists.txt b/bot/CMakeLists.txt
index 51a14fc..abcf8ed 100644
--- a/bot/CMakeLists.txt
+++ b/bot/CMakeLists.txt
@@ -28,6 +28,13 @@ set_target_properties(
OUTPUT_NAME "${PROJECT_NAME}-bot"
)
+# BetterTTV Emote support
+set(BUILD_BETTERTTV OFF BOOL "Enable BetterTTV emotes")
+if (BUILD_BETTERTTV)
+ message("-- Bulding BetterTTV parts")
+ target_compile_definitions(Bot PRIVATE BUILD_BETTERTTV=1)
+endif()
+
# TLS for websocket connections
set(USE_TLS ON CACHE BOOL "Enable TLS support")