Files
unison/utils/wscript

22 lines
728 B
Plaintext
Raw Normal View History

2007-05-07 12:01:51 +01:00
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
import os.path
2007-05-07 12:01:51 +01:00
def build(bld):
2008-12-29 13:28:54 +00:00
env = bld.env
2007-05-07 12:01:51 +01:00
2009-09-12 19:44:17 -07:00
test_runner = bld.create_ns3_program('test-runner', ['core'])
test_runner.install_path = None # do not install
test_runner.source = 'test-runner.cc'
test_runner.uselib_local = 'ns3'
2007-05-07 12:01:51 +01:00
obj = bld.create_ns3_program('bench-simulator', ['core'])
obj.source = 'bench-simulator.cc'
obj = bld.create_ns3_program('bench-packets', ['network'])
2007-09-11 08:27:27 +02:00
obj.source = 'bench-packets.cc'
obj = bld.create_ns3_program('print-introspected-doxygen',
['internet', 'csma-cd', 'point-to-point'])
obj.source = 'print-introspected-doxygen.cc'