src/csma-layout/wscript
changeset 7089 ebe626d82692
child 7293 0f574c532cee
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/csma-layout/wscript	Tue Apr 26 15:18:32 2011 -0700
@@ -0,0 +1,18 @@
+## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
+
+def build(bld):
+    obj = bld.create_ns3_module('csma-layout', ['csma', 'network', 'applications'])
+    obj.source = [
+        'model/csma-star-helper.cc',
+        ]
+    headers = bld.new_task_gen('ns3header')
+    headers.module = 'csma-layout'
+    headers.source = [
+        'model/csma-star-helper.h',
+        ]
+
+    if bld.env['ENABLE_EXAMPLES']:
+        bld.add_subdirs('examples')
+
+    #bld.ns3_python_bindings()
+