Custom (unsupported) fork of the NS-3 simulator with necessary patches for ndnSIM
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
936 B

## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
def build(bld):
obj = bld.create_ns3_program('simple-distributed',
['point-to-point', 'internet', 'nix-vector-routing', 'applications'])
obj.source = 'simple-distributed.cc'
obj = bld.create_ns3_program('third-distributed',
['point-to-point', 'internet', 'mobility', 'wifi', 'csma', 'applications'])
obj.source = 'third-distributed.cc'
obj = bld.create_ns3_program('nms-p2p-nix-distributed',
['point-to-point', 'internet', 'nix-vector-routing', 'applications'])
obj.source = 'nms-p2p-nix-distributed.cc'
obj = bld.create_ns3_program('simple-distributed-empty-node',
['point-to-point', 'internet', 'nix-vector-routing', 'applications'])
obj.source = 'simple-distributed-empty-node.cc'