diff -r 19003488e23d -r 7a1f57da547e src/netanim/examples/wscript --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/netanim/examples/wscript Sat Mar 05 10:51:26 2011 -0800 @@ -0,0 +1,14 @@ +## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- + +def build(bld): + obj = bld.create_ns3_program('dumbbell-animation', + ['netanim']) + obj.source = 'dumbbell-animation.cc' + + obj = bld.create_ns3_program('grid-animation', + ['netanim']) + obj.source = 'grid-animation.cc' + + obj = bld.create_ns3_program('star-animation', + ['netanim']) + obj.source = 'star-animation.cc'