PPI: Remove dead MultiConnectorMixin code
[senf.git] / Examples / UDPClientServer / SConscript
index 8fffdaa..ca4c4e8 100644 (file)
@@ -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)