Add routing module to run_tests; add node module as dependency to routing
authorTom Henderson <tomh@tomh.org>
Sun, 08 Jul 2007 13:55:03 -0700
changeset 1043 a475ea6dd6f9
parent 1042 db38fb0ce090
child 1044 f6180a7631ee
Add routing module to run_tests; add node module as dependency to routing
SConstruct
--- a/SConstruct	Fri Jul 06 17:13:49 2007 -0700
+++ b/SConstruct	Sun Jul 08 13:55:03 2007 -0700
@@ -368,7 +368,7 @@
 # The Routing module
 #
 routing = build.Ns3Module('routing', 'src/routing')
-routing.add_deps(['core'])
+routing.add_deps(['core', 'node'])
 ns3.add(routing)
 routing.add_sources([
     'routing-environment.cc',
@@ -387,7 +387,7 @@
 run_tests = build.Ns3Module('run-tests', 'utils')
 ns3.add(run_tests)
 run_tests.set_executable()
-run_tests.add_deps(['core', 'simulator', 'common'])
+run_tests.add_deps(['core', 'simulator', 'common', 'routing'])
 run_tests.add_source('run-tests.cc')
 
 bench_object = build.Ns3Module('bench-object', 'utils')