equal
deleted
inserted
replaced
1 ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
1 ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
2 |
2 |
3 def build(bld): |
3 def build(bld): |
|
4 # Don't build any examples unless they are enabled. |
4 if not bld.env['ENABLE_EXAMPLES']: |
5 if not bld.env['ENABLE_EXAMPLES']: |
5 return; |
6 return; |
|
7 |
|
8 # Uncomment these lines to build this C++ example program. |
|
9 #program = bld.create_ns3_program('sample-example', ['core']) |
|
10 #program.source = 'sample-example.cc' |
|
11 |
|
12 # Uncomment this line to register the dependencies for this Python |
|
13 # example script. |
|
14 #bld.register_ns3_script('sample-example.py', ['core']) |