add tutorial files

This commit is contained in:
Craig Dowell
2007-09-24 13:28:27 -07:00
parent 87cd21f1f8
commit ac9d618188
2 changed files with 101 additions and 0 deletions

10
tutorial/wscript-1 Normal file
View File

@@ -0,0 +1,10 @@
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
def build(bld):
obj = bld.create_ns3_program('hello-simulator',
['core'])
obj.source = 'hello-simulator.cc'
obj = bld.create_ns3_program('tutorial-1',
['core'])
obj.source = 'tutorial-1.cc'