2007-05-07 12:01:51 +01:00
|
|
|
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
|
|
|
|
|
|
|
|
|
def build(bld):
|
2007-08-08 15:10:36 +01:00
|
|
|
common = bld.create_ns3_module('common', ['core', 'simulator'])
|
2007-05-07 12:01:51 +01:00
|
|
|
common.source = [
|
|
|
|
|
'buffer.cc',
|
2007-08-08 09:12:55 +02:00
|
|
|
'chunk-registry.cc',
|
2007-07-02 18:23:52 +01:00
|
|
|
'packet-printer.cc',
|
|
|
|
|
'packet-metadata.cc',
|
2007-08-03 17:52:21 +02:00
|
|
|
'packet-metadata-test.cc',
|
2007-05-07 12:01:51 +01:00
|
|
|
'packet.cc',
|
|
|
|
|
'tags.cc',
|
2007-08-08 09:49:56 +02:00
|
|
|
'tag-registry.cc',
|
2007-05-07 12:01:51 +01:00
|
|
|
'pcap-writer.cc',
|
|
|
|
|
'data-rate.cc',
|
|
|
|
|
]
|
2007-07-20 11:12:43 +01:00
|
|
|
|
2007-05-07 12:01:51 +01:00
|
|
|
headers = bld.create_obj('ns3header')
|
|
|
|
|
headers.source = [
|
|
|
|
|
'buffer.h',
|
2007-08-08 09:12:55 +02:00
|
|
|
'chunk-registry.h',
|
2007-07-02 18:23:52 +01:00
|
|
|
'header.h',
|
2007-05-07 12:01:51 +01:00
|
|
|
'trailer.h',
|
|
|
|
|
'tags.h',
|
2007-08-08 09:49:56 +02:00
|
|
|
'tag-registry.h',
|
|
|
|
|
'tag.h',
|
2007-05-07 12:01:51 +01:00
|
|
|
'packet.h',
|
2007-07-02 18:23:52 +01:00
|
|
|
'packet-printer.h',
|
|
|
|
|
'packet-metadata.h',
|
2007-05-07 12:01:51 +01:00
|
|
|
'pcap-writer.h',
|
|
|
|
|
'data-rate.h',
|
|
|
|
|
]
|