mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
git-subtree-dir: src/websocket git-subtree-split: b439cd1ee99f319eb1464f7b44923ce96245735d
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')
|