move examples around

This commit is contained in:
Benjamin Sergeant 2018-10-08 14:37:27 -07:00
parent 376c8c2e00
commit 33677c4b2b
5 changed files with 5 additions and 5 deletions

View File

@ -5,10 +5,10 @@
# #
clang++ --std=c++11 --stdlib=libc++ \ clang++ --std=c++11 --stdlib=libc++ \
../ixwebsocket/IXSocket.cpp \ ../../ixwebsocket/IXSocket.cpp \
../ixwebsocket/IXWebSocketTransport.cpp \ ../../ixwebsocket/IXWebSocketTransport.cpp \
../ixwebsocket/IXSocketAppleSSL.cpp \ ../../ixwebsocket/IXSocketAppleSSL.cpp \
../ixwebsocket/IXWebSocket.cpp \ ../../ixwebsocket/IXWebSocket.cpp \
cmd_websocket_chat.cpp \ cmd_websocket_chat.cpp \
-o cmd_websocket_chat \ -o cmd_websocket_chat \
-framework Security \ -framework Security \

View File

@ -12,7 +12,7 @@
#include <iostream> #include <iostream>
#include <sstream> #include <sstream>
#include <queue> #include <queue>
#include "../ixwebsocket/IXWebSocket.h" #include "../../ixwebsocket/IXWebSocket.h"
#include "nlohmann/json.hpp" #include "nlohmann/json.hpp"