This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| include(vcpkg_common_functions) | |
| if ("websocketpp" IN_LIST FEATURES) | |
| set(USE_WEBSOCKETPP ON) | |
| elseif("uwebsockets" IN_LIST FEATURES) | |
| set(USE_WEBSOCKETPP OFF) | |
| set(USE_UWEBSOCKETS ON) | |
| endif() | |
| if ("voice" IN_LIST FEATURES) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Source: sleepy-discord | |
| Version: 2020-07-05 | |
| Homepage: https://yourwaifu.dev/sleepy-discord/documentation.html | |
| Description: C++ library for Discord | |
| Build-Depends: cpr | |
| Feature: websocketpp | |
| Description: Use websocketpp for sleepy-discord | |
| Build-Depends: openssl-windows, asio, websocketpp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| sleepy_discord/CMakeLists.txt | 99 +++++++++++++++++++++++------------ | |
| 1 file changed, 65 insertions(+), 34 deletions(-) | |
| diff --git a/sleepy_discord/CMakeLists.txt b/sleepy_discord/CMakeLists.txt | |
| index 94d7c71..b6a59a2 100644 | |
| --- a/sleepy_discord/CMakeLists.txt | |
| +++ b/sleepy_discord/CMakeLists.txt | |
| @@ -52,10 +52,14 @@ if (NOT ONLY_SLEEPY_DISCORD) | |
| #for some reason you a limited ammount of target_link_libraries calls |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| CMakeLists.txt | 81 +++++++++++++++++++++++++++++++------------------- | |
| 1 file changed, 50 insertions(+), 31 deletions(-) | |
| diff --git a/CMakeLists.txt b/CMakeLists.txt | |
| index cb18825..d3c2e48 100644 | |
| --- a/CMakeLists.txt | |
| +++ b/CMakeLists.txt | |
| @@ -7,6 +7,7 @@ option(ONLY_SLEEPY_DISCORD "Sleepy Discord but none of the dependencie | |
| option(ENABLE_VOICE "Enable voice support" OFF) |