scons build supports echo_client, chat_server, chat_client

This commit is contained in:
Peter Thorson
2012-03-14 06:28:10 -05:00
parent 6471b95a40
commit 046c2dea91
5 changed files with 77 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
## echo_client
##
Import('env')
Import('boostlibs')
Import('wslib')
Import('platform_libs')
localenv = env.Clone ()
sources = ["echo_client.cpp"]
LIBS = [wslib, platform_libs] + boostlibs(['system',
'date_time',
'regex',
'thread',
'random'])
prg = localenv.Program('echo_client', sources, LIBS = LIBS)
Return('prg')