X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Examples%2FUDPClientServer%2FSConscript;h=ca4c4e83d8e25417abc82be27bda76b21fb423f9;hb=ad287a6e1241649e73188edf5b8902e4e65f615d;hp=b683c5b77054d1d8a0845ab83e5f2762d290d190;hpb=6b43243d9b1a3b9720efdacc6f02364877ebe2aa;p=senf.git diff --git a/Examples/UDPClientServer/SConscript b/Examples/UDPClientServer/SConscript index b683c5b..ca4c4e8 100644 --- a/Examples/UDPClientServer/SConscript +++ b/Examples/UDPClientServer/SConscript @@ -1,9 +1,11 @@ +# -*- python -*- + Import('env') import SENFSCons ########################################################################### -env.Default(env.Program('udpClient', 'udpClient.cc')) -env.Default(env.Program('udpServer', 'udpServer.cc')) +env.Alias('examples', env.Program('udpClient', 'udpClient.cc')) +env.Alias('examples', env.Program('udpServer', 'udpServer.cc')) SENFSCons.Doxygen(env)