build: Fix dependency error in spectrum module
When enabling only the wifi module (./waf configure --enable-examples --enable-tests --disable-python --enable-modules=wifi), there is a dependency error with three-gpp-channel-test-suite.cc (spectrum module) because it includes buildings-channel-condition-model.h (buildings module)
This commit is contained in:
committed by
Tom Henderson
parent
621c444b74
commit
71a8b54ae1
@@ -2,7 +2,7 @@
|
||||
|
||||
def build(bld):
|
||||
|
||||
module = bld.create_ns3_module('spectrum', ['propagation', 'antenna'])
|
||||
module = bld.create_ns3_module('spectrum', ['propagation', 'antenna', 'buildings'])
|
||||
module.source = [
|
||||
'model/spectrum-model.cc',
|
||||
'model/spectrum-value.cc',
|
||||
|
||||
Reference in New Issue
Block a user