src/wifi/wscript
changeset 9277 0f87d1cb030c
parent 9234 310d371059d5
child 10139 17a71cd49da3
equal deleted inserted replaced
9276:1b5ccba50c6b 9277:0f87d1cb030c
    74         'test/dcf-manager-test.cc',
    74         'test/dcf-manager-test.cc',
    75         'test/tx-duration-test.cc',
    75         'test/tx-duration-test.cc',
    76         'test/wifi-test.cc',
    76         'test/wifi-test.cc',
    77         ]
    77         ]
    78 
    78 
    79     headers = bld.new_task_gen(features=['ns3header'])
    79     headers = bld(features='ns3header')
    80     headers.module = 'wifi'
    80     headers.module = 'wifi'
    81     headers.source = [
    81     headers.source = [
    82         'model/wifi-information-element.h',
    82         'model/wifi-information-element.h',
    83         'model/wifi-information-element-vector.h',
    83         'model/wifi-information-element-vector.h',
    84         'model/wifi-net-device.h',
    84         'model/wifi-net-device.h',
   144     if bld.env['ENABLE_GSL']:
   144     if bld.env['ENABLE_GSL']:
   145         obj.use.extend(['GSL', 'GSLCBLAS', 'M'])
   145         obj.use.extend(['GSL', 'GSLCBLAS', 'M'])
   146         obj_test.use.extend(['GSL', 'GSLCBLAS', 'M'])
   146         obj_test.use.extend(['GSL', 'GSLCBLAS', 'M'])
   147 
   147 
   148     if (bld.env['ENABLE_EXAMPLES']):
   148     if (bld.env['ENABLE_EXAMPLES']):
   149         bld.add_subdirs('examples')
   149         bld.recurse('examples')
   150 
   150 
   151     bld.ns3_python_bindings()
   151     bld.ns3_python_bindings()
   152 
   152