7 lines
209 B
Plaintext
7 lines
209 B
Plaintext
|
|
## -*- 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'
|