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