Merge commit '09987d0f9d32e860f1391bb9c75b799501e2d141' as 'Subtrees/websocket'

This commit is contained in:
Vinnie Falco
2013-06-20 17:15:11 -07:00
255 changed files with 50217 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
## wsperf
##
Import('env')
Import('boostlibs')
Import('wslib')
Import('platform_libs')
localenv = env.Clone ()
sources = ["wsperf.cpp",
"request.cpp",
"case.cpp",
"generic.cpp",
"stress_handler.cpp",
"stress_aggregate.cpp",
"wscmd.cpp"]
LIBS = [wslib] + boostlibs(['system',
'date_time',
'regex',
'thread',
'random',
'chrono',
'program_options']) + [platform_libs]
prg = localenv.Program('wsperf', sources, LIBS = LIBS)
Return('prg')