Combine all boot build stuff in a single scons tool
[senf.git] / Examples / TCPClientServer / SConscript
index 203c81d..78d4eca 100644 (file)
@@ -3,5 +3,5 @@ import SENFSCons
 
 ###########################################################################
 
-SENFSCons.Binary(env, 'client', 'client.cc');
-SENFSCons.Binary(env, 'server', 'server.cc');
+env.Program('client', 'client.cc')
+env.Program('server', 'server.cc')