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-07-02 18:23:52 +01:00
|
|
|
'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',
|
2008-03-17 17:37:25 -07:00
|
|
|
'chunk.cc',
|
2008-03-17 12:12:17 -07:00
|
|
|
'header.cc',
|
|
|
|
|
'trailer.cc',
|
2007-05-07 12:01:51 +01:00
|
|
|
'pcap-writer.cc',
|
|
|
|
|
'data-rate.cc',
|
2007-11-14 20:40:05 -08:00
|
|
|
'error-model.cc',
|
2007-05-07 12:01:51 +01:00
|
|
|
]
|
2007-07-20 11:12:43 +01:00
|
|
|
|
2007-05-07 12:01:51 +01:00
|
|
|
headers = bld.create_obj('ns3header')
|
2007-12-26 13:40:39 +00:00
|
|
|
headers.module = 'common'
|
2007-05-07 12:01:51 +01:00
|
|
|
headers.source = [
|
|
|
|
|
'buffer.h',
|
2008-03-17 17:37:25 -07:00
|
|
|
'chunk.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-metadata.h',
|
2007-05-07 12:01:51 +01:00
|
|
|
'pcap-writer.h',
|
|
|
|
|
'data-rate.h',
|
2007-11-14 20:40:05 -08:00
|
|
|
'error-model.h',
|
2007-05-07 12:01:51 +01:00
|
|
|
]
|