src/netanim/wscript
author Sébastien Deronne <sebastien.deronne@gmail.com>
Sat, 08 Dec 2018 16:52:32 +0100
changeset 13892 53fa9b4b8c09
parent 13114 ba42ffbfbe1e
permissions -rw-r--r--
wifi: wifi: Add ThresholdPreambleDetectionModel logs in WifiHelper::EnableLogComponents

## -*-Mode : python; py-indent-offset : 4; indent-tabs-mode : nil; coding : utf-8; -*-

import wutils

# Required NetAnim version
NETANIM_RELEASE_NAME = "netanim-3.108"

def build (bld) :
    module = bld.create_ns3_module ('netanim', ['internet', 'mobility', 'wimax', 'wifi', 'csma', 'lte', 'uan', 'lr-wpan', 'energy', 'wave', 'point-to-point-layout'])
    module.includes = '.'
    module.source = [ 'model/animation-interface.cc', ]
    netanim_test = bld.create_ns3_module_test_library('netanim')
    netanim_test.source = ['test/netanim-test.cc', ]
    headers = bld(features='ns3header')
    headers.module = 'netanim'
    headers.source = ['model/animation-interface.h', ]
    if (bld.env['ENABLE_EXAMPLES']) :
       bld.recurse('examples')