Files
unison/src/lte/wscript

222 lines
7.8 KiB
Plaintext
Raw Normal View History

2010-12-02 09:03:34 +01:00
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
def build(bld):
2011-11-11 15:59:00 +01:00
module = bld.create_ns3_module('lte', ['core', 'network', 'spectrum', 'stats', 'buildings', 'virtual-net-device','point-to-point','applications','internet','csma'])
2010-12-02 09:03:34 +01:00
module.source = [
2011-04-01 11:12:48 +02:00
'model/lte-common.cc',
2010-12-02 09:03:34 +01:00
'model/lte-spectrum-phy.cc',
2011-11-13 16:08:44 +01:00
'model/lte-spectrum-signal-parameters.cc',
2010-12-02 09:03:34 +01:00
'model/lte-phy.cc',
2011-03-10 18:57:41 +01:00
'model/lte-enb-phy.cc',
'model/lte-ue-phy.cc',
2010-12-02 09:03:34 +01:00
'model/lte-spectrum-value-helper.cc',
2011-03-10 18:57:41 +01:00
'model/lte-amc.cc',
2011-03-10 18:15:26 +01:00
'model/lte-enb-rrc.cc',
'model/lte-ue-rrc.cc',
2012-11-23 11:51:09 +01:00
'model/lte-rrc-sap.cc',
2012-10-30 16:02:07 +01:00
'model/lte-rrc-protocol-ideal.cc',
'model/lte-rrc-protocol-real.cc',
2011-09-07 16:23:47 +02:00
'model/lte-rlc-sap.cc',
2011-03-10 18:15:26 +01:00
'model/lte-rlc.cc',
2012-01-19 15:41:21 +01:00
'model/lte-rlc-sequence-number.cc',
2011-09-07 16:23:47 +02:00
'model/lte-rlc-header.cc',
2011-12-05 13:00:14 +01:00
'model/lte-rlc-am-header.cc',
2012-10-30 16:02:07 +01:00
'model/lte-rlc-tm.cc',
2011-09-07 16:23:47 +02:00
'model/lte-rlc-um.cc',
2011-12-05 13:00:14 +01:00
'model/lte-rlc-am.cc',
'model/lte-rlc-tag.cc',
'model/lte-rlc-sdu-status-tag.cc',
'model/lte-pdcp-sap.cc',
'model/lte-pdcp.cc',
'model/lte-pdcp-header.cc',
2011-11-24 11:43:18 +01:00
'model/lte-pdcp-tag.cc',
'model/eps-bearer.cc',
'model/lte-radio-bearer-info.cc',
2010-12-02 09:03:34 +01:00
'model/lte-net-device.cc',
2011-03-10 18:57:41 +01:00
'model/lte-enb-net-device.cc',
'model/lte-ue-net-device.cc',
'model/lte-control-messages.cc',
2011-12-05 21:13:53 +01:00
'helper/lte-helper.cc',
'helper/lte-stats-calculator.cc',
2011-07-11 13:47:36 +02:00
'helper/epc-helper.cc',
'helper/radio-bearer-stats-calculator.cc',
'helper/radio-bearer-stats-connector.cc',
'helper/mac-stats-calculator.cc',
'helper/phy-tx-stats-calculator.cc',
'helper/phy-rx-stats-calculator.cc',
'helper/radio-environment-map-helper.cc',
2012-03-20 18:34:19 +01:00
'helper/lte-hex-grid-enb-topology-helper.cc',
'model/rem-spectrum-phy.cc',
'model/ff-mac-common.cc',
2011-03-10 18:15:26 +01:00
'model/ff-mac-csched-sap.cc',
'model/ff-mac-sched-sap.cc',
'model/lte-mac-sap.cc',
'model/ff-mac-scheduler.cc',
'model/lte-enb-cmac-sap.cc',
'model/lte-ue-cmac-sap.cc',
2011-03-10 18:15:26 +01:00
'model/rr-ff-mac-scheduler.cc',
'model/lte-enb-mac.cc',
'model/lte-ue-mac.cc',
'model/lte-radio-bearer-tag.cc',
2012-10-30 16:02:07 +01:00
'model/eps-bearer-tag.cc',
2011-03-15 11:22:36 +01:00
'model/lte-phy-tag.cc',
2011-03-10 18:15:26 +01:00
'model/lte-enb-phy-sap.cc',
'model/lte-enb-cphy-sap.cc',
2011-03-10 18:15:26 +01:00
'model/lte-ue-phy-sap.cc',
'model/lte-ue-cphy-sap.cc',
2011-03-10 18:15:26 +01:00
'model/lte-interference.cc',
'model/lte-sinr-chunk-processor.cc',
2011-03-17 15:47:36 +01:00
'model/pf-ff-mac-scheduler.cc',
2011-07-11 13:47:36 +02:00
'model/epc-gtpu-header.cc',
2011-11-11 15:59:00 +01:00
'model/trace-fading-loss-model.cc',
2011-09-09 18:20:08 +02:00
'model/epc-enb-application.cc',
'model/epc-sgw-pgw-application.cc',
2012-06-28 13:40:58 +02:00
'model/epc-x2-sap.cc',
'model/epc-x2-header.cc',
'model/epc-x2.cc',
2011-12-05 21:27:44 +01:00
'model/epc-tft.cc',
'model/epc-tft-classifier.cc',
'model/lte-mi-error-model.cc',
2012-07-31 19:18:23 +02:00
'model/lte-vendor-specific-parameters.cc',
'model/epc-enb-s1-sap.cc',
'model/epc-s1ap-sap.cc',
'model/epc-s11-sap.cc',
'model/lte-as-sap.cc',
'model/epc-ue-nas.cc',
'model/lte-harq-phy.cc',
'model/epc-mme.cc',
'model/lte-asn1-header.cc',
'model/lte-rrc-header.cc',
]
module_test = bld.create_ns3_module_test_library('lte')
module_test.source = [
2011-05-02 17:56:00 +02:00
'test/lte-test-downlink-sinr.cc',
'test/lte-test-uplink-sinr.cc',
2011-05-06 18:31:37 +02:00
'test/lte-test-link-adaptation.cc',
2011-06-03 20:34:50 +02:00
'test/lte-test-interference.cc',
2011-05-02 17:56:00 +02:00
'test/lte-test-sinr-chunk-processor.cc',
'test/lte-test-ue-phy.cc',
'test/lte-test-rr-ff-mac-scheduler.cc',
'test/lte-test-pf-ff-mac-scheduler.cc',
2011-05-02 13:59:17 +02:00
'test/lte-test-earfcn.cc',
2011-05-04 19:27:33 +02:00
'test/lte-test-spectrum-value-helper.cc',
2011-11-11 15:59:00 +01:00
'test/lte-test-pathloss-model.cc',
'test/lte-test-entities.cc',
'test/lte-simple-helper.cc',
'test/lte-simple-net-device.cc',
2012-01-13 18:00:09 +01:00
'test/lte-test-rlc-um-transmitter.cc',
2011-12-05 13:00:14 +01:00
'test/lte-test-rlc-am-transmitter.cc',
'test/lte-test-rlc-um-e2e.cc',
'test/lte-test-rlc-am-e2e.cc',
2011-07-11 13:47:36 +02:00
'test/epc-test-gtpu.cc',
'test/test-epc-tft-classifier.cc',
2011-10-19 19:01:50 +02:00
'test/epc-test-s1u-downlink.cc',
2011-10-21 17:31:08 +02:00
'test/epc-test-s1u-uplink.cc',
'test/test-lte-epc-e2e-data.cc',
'test/test-lte-antenna.cc',
2012-03-22 18:16:01 +01:00
'test/lte-test-phy-error-model.cc',
2012-10-30 16:02:07 +01:00
'test/lte-test-mimo.cc',
2012-11-22 12:05:46 +01:00
'test/lte-test-harq.cc',
2012-11-23 17:24:02 +01:00
'test/test-lte-rrc.cc',
'test/test-lte-x2-handover.cc',
'test/test-asn1-encoding.cc',
2010-12-02 09:03:34 +01:00
]
2011-09-07 16:23:47 +02:00
2011-09-08 16:13:40 +01:00
headers = bld.new_task_gen(features=['ns3header'])
2010-12-02 09:03:34 +01:00
headers.module = 'lte'
headers.source = [
2011-04-01 11:12:48 +02:00
'model/lte-common.h',
2010-12-02 09:03:34 +01:00
'model/lte-spectrum-phy.h',
2011-11-13 16:08:44 +01:00
'model/lte-spectrum-signal-parameters.h',
2010-12-02 09:03:34 +01:00
'model/lte-phy.h',
2011-03-10 18:57:41 +01:00
'model/lte-enb-phy.h',
'model/lte-ue-phy.h',
2010-12-02 09:03:34 +01:00
'model/lte-spectrum-value-helper.h',
2011-03-10 18:57:41 +01:00
'model/lte-amc.h',
2011-03-10 18:15:26 +01:00
'model/lte-enb-rrc.h',
'model/lte-ue-rrc.h',
2012-10-30 16:02:07 +01:00
'model/lte-rrc-sap.h',
'model/lte-rrc-protocol-ideal.h',
'model/lte-rrc-protocol-real.h',
2011-09-07 16:23:47 +02:00
'model/lte-rlc-sap.h',
2011-03-10 18:15:26 +01:00
'model/lte-rlc.h',
2011-09-07 16:23:47 +02:00
'model/lte-rlc-header.h',
2012-01-19 15:41:21 +01:00
'model/lte-rlc-sequence-number.h',
2011-12-05 13:00:14 +01:00
'model/lte-rlc-am-header.h',
2012-10-30 16:02:07 +01:00
'model/lte-rlc-tm.h',
2011-09-07 16:23:47 +02:00
'model/lte-rlc-um.h',
2011-12-05 13:00:14 +01:00
'model/lte-rlc-am.h',
'model/lte-rlc-tag.h',
'model/lte-rlc-sdu-status-tag.h',
'model/lte-pdcp-sap.h',
'model/lte-pdcp.h',
'model/lte-pdcp-header.h',
2011-11-24 11:43:18 +01:00
'model/lte-pdcp-tag.h',
2011-09-07 16:23:47 +02:00
'model/eps-bearer.h',
'model/lte-radio-bearer-info.h',
2010-12-02 09:03:34 +01:00
'model/lte-net-device.h',
2011-03-10 18:57:41 +01:00
'model/lte-enb-net-device.h',
'model/lte-ue-net-device.h',
'model/lte-control-messages.h',
2011-12-05 21:13:53 +01:00
'helper/lte-helper.h',
'helper/lte-stats-calculator.h',
2011-07-11 13:47:36 +02:00
'helper/epc-helper.h',
'helper/mac-stats-calculator.h',
'helper/phy-tx-stats-calculator.h',
'helper/phy-rx-stats-calculator.h',
'helper/radio-bearer-stats-calculator.h',
'helper/radio-bearer-stats-connector.h',
2012-01-19 15:41:21 +01:00
'helper/radio-environment-map-helper.h',
2012-03-20 18:34:19 +01:00
'helper/lte-hex-grid-enb-topology-helper.h',
2012-01-19 15:41:21 +01:00
'model/rem-spectrum-phy.h',
2011-03-10 18:15:26 +01:00
'model/ff-mac-common.h',
'model/ff-mac-csched-sap.h',
'model/ff-mac-sched-sap.h',
'model/lte-enb-cmac-sap.h',
'model/lte-ue-cmac-sap.h',
'model/lte-mac-sap.h',
'model/ff-mac-scheduler.h',
'model/rr-ff-mac-scheduler.h',
'model/lte-enb-mac.h',
'model/lte-ue-mac.h',
'model/lte-radio-bearer-tag.h',
2012-10-30 16:02:07 +01:00
'model/eps-bearer-tag.h',
2011-03-15 11:22:36 +01:00
'model/lte-phy-tag.h',
2011-03-10 18:15:26 +01:00
'model/lte-enb-phy-sap.h',
'model/lte-enb-cphy-sap.h',
2011-03-10 18:15:26 +01:00
'model/lte-ue-phy-sap.h',
'model/lte-ue-cphy-sap.h',
2011-03-10 18:15:26 +01:00
'model/lte-interference.h',
'model/lte-sinr-chunk-processor.h',
2011-03-17 15:47:36 +01:00
'model/pf-ff-mac-scheduler.h',
'model/trace-fading-loss-model.h',
2011-07-11 13:47:36 +02:00
'model/epc-gtpu-header.h',
2011-09-09 18:20:08 +02:00
'model/epc-enb-application.h',
'model/epc-sgw-pgw-application.h',
'model/lte-vendor-specific-parameters.h',
2012-06-28 13:40:58 +02:00
'model/epc-x2-sap.h',
'model/epc-x2-header.h',
'model/epc-x2.h',
2011-12-05 21:27:44 +01:00
'model/epc-tft.h',
'model/epc-tft-classifier.h',
2012-03-22 18:16:01 +01:00
'model/lte-mi-error-model.h',
'test/lte-test-ue-phy.h',
2012-07-31 19:18:23 +02:00
'test/lte-test-sinr-chunk-processor.h',
'model/epc-enb-s1-sap.h',
'model/epc-s1ap-sap.h',
'model/epc-s11-sap.h',
'model/lte-as-sap.h',
'model/epc-ue-nas.h',
'model/lte-harq-phy.h',
'model/epc-mme.h',
'model/lte-asn1-header.h',
'model/lte-rrc-header.h',
2010-12-02 09:03:34 +01:00
]
if (bld.env['ENABLE_EXAMPLES']):
bld.add_subdirs('examples')
2011-03-22 15:41:38 +00:00
bld.ns3_python_bindings()