Cleanup aodv test dependency on mesh module

This commit is contained in:
Tommaso Pecorella
2015-01-23 08:09:53 +01:00
parent 3a4b604ea3
commit 3e8ccda80e
3 changed files with 2 additions and 4 deletions

View File

@@ -22,7 +22,6 @@
#include "bug-772.h"
#include "loopback.h"
#include "ns3/mesh-helper.h"
#include "ns3/simulator.h"
#include "ns3/mobility-helper.h"
#include "ns3/double.h"

View File

@@ -20,7 +20,6 @@
#include "bug-772.h"
#include "ns3/mesh-helper.h"
#include "ns3/simulator.h"
#include "ns3/random-variable-stream.h"
#include "ns3/rng-seed-manager.h"

View File

@@ -1,7 +1,7 @@
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
def build(bld):
module = bld.create_ns3_module('aodv', ['internet', 'wifi', 'applications', 'mesh'])
module = bld.create_ns3_module('aodv', ['internet', 'wifi', 'applications'])
module.includes = '.'
module.source = [
'model/aodv-id-cache.cc',
@@ -11,7 +11,7 @@ def build(bld):
'model/aodv-packet.cc',
'model/aodv-neighbor.cc',
'model/aodv-routing-protocol.cc',
'helper/aodv-helper.cc',
'helper/aodv-helper.cc',
]
aodv_test = bld.create_ns3_module_test_library('aodv')