From 9ee893072608659aed596e5e09566150e297be4c Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Tue, 13 May 2008 01:04:42 +0100 Subject: [PATCH] WAF: add uselib_local to the ns3 library to pull in library dependencies from the ns-3 modules into the main library. --- wscript | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wscript b/wscript index 0eeaac12a..6cc76a904 100644 --- a/wscript +++ b/wscript @@ -303,8 +303,10 @@ def build(bld): lib.target = 'ns3' if env['NS3_ENABLED_MODULES']: lib.add_objects = list(modules) + lib.uselib_local = list(modules) else: lib.add_objects = list(env['NS3_MODULES']) + lib.uselib_local = list(env['NS3_MODULES']) def get_command_template():