src/network/examples/wscript
author Mitch Watrous <watrous@u.washington.edu>
Fri, 15 Apr 2011 13:03:02 -0700
changeset 7028 3963d3678649
parent 7025 32212c736ab4
child 7613 62d636866e2e
permissions -rw-r--r--
Make examples that were in samples directory run

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

def build(bld):
    if not bld.env['ENABLE_EXAMPLES']:
        return;

    obj = bld.create_ns3_program('main-packet-header', ['network'])
    obj.source = 'main-packet-header.cc'

    obj = bld.create_ns3_program('main-packet-tag', ['network'])
    obj.source = 'main-packet-tag.cc'