X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Examples%2FUDPClientServer%2FSConscript;h=ca4c4e83d8e25417abc82be27bda76b21fb423f9;hb=ad287a6e1241649e73188edf5b8902e4e65f615d;hp=8fffdaa70fcd942b4d07cdf088422da50b941be3;hpb=6ccff463b40b246fcb8a2e4f1b6c72beb7421921;p=senf.git diff --git a/Examples/UDPClientServer/SConscript b/Examples/UDPClientServer/SConscript index 8fffdaa..ca4c4e8 100644 --- a/Examples/UDPClientServer/SConscript +++ b/Examples/UDPClientServer/SConscript @@ -1,12 +1,11 @@ +# -*- python -*- + Import('env') import SENFSCons ########################################################################### -SENFSCons.Binary(env, 'udpClient', 'udpClient.cc', - LIBS = [ 'Packets', 'Socket', 'Scheduler', 'Utils' ]); - -SENFSCons.Binary(env, 'udpServer', 'udpServer.cc', - LIBS = [ 'Scheduler', 'Packets', 'Socket', 'Scheduler', 'Utils' ]); +env.Alias('examples', env.Program('udpClient', 'udpClient.cc')) +env.Alias('examples', env.Program('udpServer', 'udpServer.cc')) SENFSCons.Doxygen(env)