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