Embed our own private copy of websocketpp.

This commit is contained in:
Arthur Britto
2012-12-12 19:07:03 -08:00
parent 7ec2e5cc3e
commit be5087a9de
238 changed files with 48634 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
## chat_server
##
Import('env')
Import('boostlibs')
Import('wslib')
Import('platform_libs')
localenv = env.Clone ()
sources = ["chat_server.cpp","chat.cpp"]
LIBS = [wslib, platform_libs] + boostlibs(['system',
'date_time',
'regex',
'thread'])
prg = localenv.Program('chat_server', sources, LIBS = LIBS)
Return('prg')