Add new example folder for publishing events to satori, with a minimal satori sdk

This commit is contained in:
Benjamin Sergeant
2018-11-07 12:26:32 -08:00
parent 2b203c4616
commit 6dbfe28427
18 changed files with 8886 additions and 1 deletions

View File

@ -16,6 +16,7 @@ set( IXWEBSOCKET_SOURCES
ixwebsocket/IXSocket.cpp
ixwebsocket/IXWebSocket.cpp
ixwebsocket/IXWebSocketTransport.cpp
ixwebsocket/IXWebSocketPerMessageDeflate.cpp
)
set( IXWEBSOCKET_HEADERS
@ -23,6 +24,7 @@ set( IXWEBSOCKET_HEADERS
ixwebsocket/IXSocket.h
ixwebsocket/IXWebSocket.h
ixwebsocket/IXWebSocketTransport.h
ixwebsocket/IXWebSocketPerMessageDeflate.h
)
if (USE_TLS)
@ -42,6 +44,8 @@ add_library( ixwebsocket STATIC
${IXWEBSOCKET_HEADERS}
)
target_link_libraries(ixwebsocket "z")
set( IXWEBSOCKET_INCLUDE_DIRS
.
../../shared/OpenSSL/include)