mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Squashed 'src/cpp/websocketpp/' content from commit 1ec36a4
git-subtree-dir: src/cpp/websocketpp git-subtree-split: 1ec36a47468a23f01754fa3a086874e13a4d52d9
This commit is contained in:
29
examples/wsperf/SConscript
Normal file
29
examples/wsperf/SConscript
Normal 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')
|
||||
Reference in New Issue
Block a user