mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 02:55:50 +00:00
22 lines
512 B
Python
22 lines
512 B
Python
## echo_server_tls
|
|
##
|
|
|
|
Import('env')
|
|
Import('boostlibs')
|
|
Import('wslib')
|
|
Import('platform_libs')
|
|
Import('tls_libs')
|
|
|
|
localenv = env.Clone ()
|
|
|
|
sources = ["echo_server_tls.cpp"]
|
|
|
|
LIBS = [wslib, platform_libs, tls_libs] + boostlibs(['system',
|
|
'date_time',
|
|
'regex',
|
|
'thread'])
|
|
|
|
prg = localenv.Program('echo_server_tls', sources, LIBS = LIBS)
|
|
|
|
Return('prg')
|