diff options
| author | ilotterytea <iltsu@alright.party> | 2025-04-18 16:25:28 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-04-18 16:25:28 +0500 |
| commit | 9b1a11e8fee33abb933aa3836faf60cc14deb68d (patch) | |
| tree | b94a90a53f89e62e4aac770d97ead73a97072d76 /bot/CMakeLists.txt | |
| parent | 4827c87c986d217a940ce87cc31245440d6b1ab6 (diff) | |
feat: betterttv clients (experimental)
Diffstat (limited to 'bot/CMakeLists.txt')
| -rw-r--r-- | bot/CMakeLists.txt | 7 |
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") |
