Files
unison/src/node/wscript

61 lines
1.5 KiB
Plaintext
Raw Normal View History

2007-05-07 12:01:51 +01:00
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
def build(bld):
node = bld.create_obj('cpp', 'shlib')
node.name = 'ns3-node'
node.target = node.name
node.uselib_local = ['ns3-core', 'ns3-common', 'ns3-simulator']
2007-05-07 12:01:51 +01:00
node.source = [
2007-07-26 14:03:41 +02:00
'address.cc',
'eui48-address.cc',
2007-08-01 09:02:03 +02:00
'eui64-address.cc',
2007-07-30 13:29:36 +02:00
'inet-socket-address.cc',
2007-08-01 09:02:03 +02:00
'packet-socket-address.cc',
2007-06-04 16:21:05 +02:00
'node.cc',
2007-05-07 12:01:51 +01:00
'ipv4-address.cc',
'net-device.cc',
2007-07-30 10:35:03 +02:00
'address-utils.cc',
2007-05-07 12:01:51 +01:00
'llc-snap-header.cc',
2007-07-27 21:16:40 +02:00
'ethernet-header.cc',
'ethernet-trailer.cc',
2007-05-07 12:01:51 +01:00
'ipv4-route.cc',
'queue.cc',
'drop-tail-queue.cc',
2007-05-07 12:01:51 +01:00
'channel.cc',
'node-list.cc',
'socket.cc',
'socket-factory.cc',
2007-08-01 09:02:03 +02:00
'packet-socket-factory.cc',
'packet-socket.cc',
'udp.cc',
'ipv4.cc',
2007-05-13 12:52:38 +01:00
'application.cc',
2007-05-07 12:01:51 +01:00
]
headers = bld.create_obj('ns3header')
headers.source = [
2007-07-26 14:03:41 +02:00
'address.h',
'eui48-address.h',
2007-08-01 09:02:03 +02:00
'eui64-address.h',
2007-07-30 13:29:36 +02:00
'inet-socket-address.h',
2007-08-01 09:02:03 +02:00
'packet-socket-address.h',
2007-06-04 16:21:05 +02:00
'node.h',
2007-05-07 12:01:51 +01:00
'ipv4-address.h',
'net-device.h',
2007-07-30 10:35:03 +02:00
'address-utils.h',
2007-05-07 12:01:51 +01:00
'ipv4-route.h',
'queue.h',
'drop-tail-queue.h',
2007-05-07 12:01:51 +01:00
'llc-snap-header.h',
2007-07-27 21:16:40 +02:00
'ethernet-header.h',
'ethernet-trailer.h',
2007-05-07 12:01:51 +01:00
'channel.h',
'node-list.h',
'socket.h',
'socket-factory.h',
2007-08-01 09:02:03 +02:00
'packet-socket-factory.h',
'udp.h',
'ipv4.h',
2007-05-13 12:52:38 +01:00
'application.h',
2007-05-07 12:01:51 +01:00
]