X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Examples%2FUDPClientServer%2FSConscript;h=b683c5b77054d1d8a0845ab83e5f2762d290d190;hb=dabe8f95330ac77629aabcb710627af474b440de;hp=cd426a89fd7f5ca6fb15e877b9ce18453fcaf2d7;hpb=87b37eb193532cdb47b2440b6a0c8ee76c7b2f6d;p=senf.git diff --git a/Examples/UDPClientServer/SConscript b/Examples/UDPClientServer/SConscript index cd426a8..b683c5b 100644 --- a/Examples/UDPClientServer/SConscript +++ b/Examples/UDPClientServer/SConscript @@ -3,6 +3,7 @@ import SENFSCons ########################################################################### -SENFSCons.Binary(env, 'udpClient', 'udpClient.cc'); -SENFSCons.Binary(env, 'udpServer', 'udpServer.cc',); +env.Default(env.Program('udpClient', 'udpClient.cc')) +env.Default(env.Program('udpServer', 'udpServer.cc')) + SENFSCons.Doxygen(env)