move files around
This commit is contained in:
parent
3a68bbd1b2
commit
e847716076
@ -24,6 +24,7 @@ set( IXWEBSOCKET_HEADERS
|
|||||||
ixwebsocket/IXSocket.h
|
ixwebsocket/IXSocket.h
|
||||||
ixwebsocket/IXWebSocket.h
|
ixwebsocket/IXWebSocket.h
|
||||||
ixwebsocket/IXWebSocketTransport.h
|
ixwebsocket/IXWebSocketTransport.h
|
||||||
|
ixwebsocket/IXWebSocketSendInfo.h
|
||||||
ixwebsocket/IXWebSocketPerMessageDeflate.h
|
ixwebsocket/IXWebSocketPerMessageDeflate.h
|
||||||
ixwebsocket/IXWebSocketPerMessageDeflateOptions.h
|
ixwebsocket/IXWebSocketPerMessageDeflateOptions.h
|
||||||
ixwebsocket/IXWebSocketHttpHeaders.h
|
ixwebsocket/IXWebSocketHttpHeaders.h
|
||||||
|
@ -18,11 +18,12 @@ option(USE_TLS "Add TLS support" ON)
|
|||||||
add_subdirectory(${PROJECT_SOURCE_DIR}/../.. ixwebsocket)
|
add_subdirectory(${PROJECT_SOURCE_DIR}/../.. ixwebsocket)
|
||||||
|
|
||||||
include_directories(satori_publisher ${OPENSSL_PREFIX}/include)
|
include_directories(satori_publisher ${OPENSSL_PREFIX}/include)
|
||||||
|
include_directories(satori_publisher .)
|
||||||
|
|
||||||
add_executable(satori_publisher
|
add_executable(satori_publisher
|
||||||
base64.cpp
|
|
||||||
jsoncpp/jsoncpp.cpp
|
jsoncpp/jsoncpp.cpp
|
||||||
IXHMac.cpp
|
ixcrypto/IXHMac.cpp
|
||||||
|
ixcrypto/IXBase64.cpp
|
||||||
IXSatoriConnection.cpp
|
IXSatoriConnection.cpp
|
||||||
satori_publisher.cpp)
|
satori_publisher.cpp)
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "IXSatoriConnection.h"
|
#include "IXSatoriConnection.h"
|
||||||
#include "IXHMac.h"
|
#include <ixcrypto/IXHMac.h>
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
@ -13,7 +13,7 @@
|
|||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
|
||||||
namespace ix
|
namespace
|
||||||
{
|
{
|
||||||
bool parseJson(const std::string& str, Json::Value& value)
|
bool parseJson(const std::string& str, Json::Value& value)
|
||||||
{
|
{
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
#include <thread>
|
#include <thread>
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
|
||||||
#include "jsoncpp/json/json.h"
|
#include <jsoncpp/json/json.h>
|
||||||
#include <ixwebsocket/IXWebSocket.h>
|
#include <ixwebsocket/IXWebSocket.h>
|
||||||
#include <ixwebsocket/IXWebSocketPerMessageDeflateOptions.h>
|
#include <ixwebsocket/IXWebSocketPerMessageDeflateOptions.h>
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "base64.h"
|
#include "IXBase64.h"
|
||||||
|
|
||||||
namespace ix
|
namespace ix
|
||||||
{
|
{
|
@ -4,7 +4,7 @@
|
|||||||
* Copyright (c) 2018 Machine Zone. All rights reserved.
|
* Copyright (c) 2018 Machine Zone. All rights reserved.
|
||||||
*/
|
*/
|
||||||
#include "IXHMac.h"
|
#include "IXHMac.h"
|
||||||
#include "base64.h"
|
#include "IXBase64.h"
|
||||||
|
|
||||||
#include <openssl/hmac.h>
|
#include <openssl/hmac.h>
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user