2018-09-27 14:56:48 -07:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Author: Benjamin Sergeant
|
|
|
|
# Copyright (c) 2017-2018 Machine Zone, Inc. All rights reserved.
|
|
|
|
#
|
|
|
|
|
2018-10-08 15:23:01 -07:00
|
|
|
# 'manual' way of building. You can also use cmake.
|
|
|
|
|
2018-09-27 14:56:48 -07:00
|
|
|
clang++ --std=c++11 --stdlib=libc++ \
|
2018-10-08 14:37:27 -07:00
|
|
|
../../ixwebsocket/IXSocket.cpp \
|
|
|
|
../../ixwebsocket/IXWebSocketTransport.cpp \
|
|
|
|
../../ixwebsocket/IXSocketAppleSSL.cpp \
|
|
|
|
../../ixwebsocket/IXWebSocket.cpp \
|
2018-09-27 14:56:48 -07:00
|
|
|
cmd_websocket_chat.cpp \
|
|
|
|
-o cmd_websocket_chat \
|
|
|
|
-framework Security \
|
|
|
|
-framework Foundation
|