feat: add initial experimental Twitch Eventsub support (#5837)

Co-authored-by: nerix <nerixdev@outlook.de>
This commit is contained in:
pajlada
2025-02-02 17:03:24 +01:00
committed by GitHub
parent f9f7d47b43
commit 0f8a29fdb9
130 changed files with 19656 additions and 8 deletions
+14
View File
@@ -0,0 +1,14 @@
include(FindPackageHandleStandardArgs)
find_path(BoostCertify_INCLUDE_DIR boost/certify/https_verification.hpp HINTS ${CMAKE_SOURCE_DIR}/lib/certify/include)
find_package_handle_standard_args(BoostCertify DEFAULT_MSG BoostCertify_INCLUDE_DIR)
if (BoostCertify_FOUND)
add_library(BoostCertify INTERFACE IMPORTED)
set_target_properties(BoostCertify PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${BoostCertify_INCLUDE_DIR}"
)
endif ()
mark_as_advanced(BoostCertify_INCLUDE_DIR)