Squashed 'src/websocket/' content from commit b439cd1

git-subtree-dir: src/websocket
git-subtree-split: b439cd1ee99f319eb1464f7b44923ce96245735d
This commit is contained in:
Vinnie Falco
2013-09-11 09:58:50 -07:00
commit 128e6a4125
255 changed files with 50244 additions and 0 deletions

View File

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