mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 11:05:54 +00:00
Merge commit '09987d0f9d32e860f1391bb9c75b799501e2d141' as 'Subtrees/websocket'
This commit is contained in:
20
Subtrees/websocket/examples/echo_server/SConscript
Normal file
20
Subtrees/websocket/examples/echo_server/SConscript
Normal file
@@ -0,0 +1,20 @@
|
||||
## 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')
|
||||
Reference in New Issue
Block a user