mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 11:05:54 +00:00
21 lines
441 B
Python
21 lines
441 B
Python
## 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')
|