mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-01 08:25:51 +00:00
Merge commit '09987d0f9d32e860f1391bb9c75b799501e2d141' as 'Subtrees/websocket'
This commit is contained in:
21
Subtrees/websocket/examples/chat_client/SConscript
Normal file
21
Subtrees/websocket/examples/chat_client/SConscript
Normal file
@@ -0,0 +1,21 @@
|
||||
## chat_client
|
||||
##
|
||||
|
||||
Import('env')
|
||||
Import('boostlibs')
|
||||
Import('wslib')
|
||||
Import('platform_libs')
|
||||
|
||||
localenv = env.Clone ()
|
||||
|
||||
sources = ["chat_client.cpp","chat_client_handler.cpp"]
|
||||
|
||||
LIBS = [wslib, platform_libs] + boostlibs(['system',
|
||||
'date_time',
|
||||
'regex',
|
||||
'thread',
|
||||
'random'])
|
||||
|
||||
prg = localenv.Program('chat_client', sources, LIBS = LIBS)
|
||||
|
||||
Return('prg')
|
||||
Reference in New Issue
Block a user