X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Examples%2FTCPClientServer%2FSConscript;h=136a95cef5fdae5865ef2057a8b1542319199d26;hb=ad287a6e1241649e73188edf5b8902e4e65f615d;hp=203c81d23ecc22127c13d373fb4d029a4612af7c;hpb=87b37eb193532cdb47b2440b6a0c8ee76c7b2f6d;p=senf.git diff --git a/Examples/TCPClientServer/SConscript b/Examples/TCPClientServer/SConscript index 203c81d..136a95c 100644 --- a/Examples/TCPClientServer/SConscript +++ b/Examples/TCPClientServer/SConscript @@ -1,7 +1,9 @@ +# -*- python -*- + Import('env') import SENFSCons ########################################################################### -SENFSCons.Binary(env, 'client', 'client.cc'); -SENFSCons.Binary(env, 'server', 'server.cc'); +env.Alias('examples', env.Program('client', 'client.cc')) +env.Alias('examples', env.Program('server', 'server.cc'))