mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
27 lines
669 B
Python
27 lines
669 B
Python
## wsperf
|
|
##
|
|
|
|
Import('env')
|
|
Import('boostlibs')
|
|
Import('wslib')
|
|
Import('platform_libs')
|
|
|
|
localenv = env.Clone ()
|
|
|
|
sources = ["wsperf.cpp",
|
|
"request.cpp",
|
|
"case.cpp",
|
|
"generic.cpp"]
|
|
|
|
LIBS = [wslib, platform_libs] + boostlibs(['system',
|
|
'date_time',
|
|
'regex',
|
|
'thread',
|
|
'random',
|
|
'chrono',
|
|
'program_options'])
|
|
|
|
prg = localenv.Program('wsperf', sources, LIBS = LIBS)
|
|
|
|
Return('prg')
|