src/flow-monitor/wscript
changeset 6939 9fe35f79fd8f
parent 6905 355d6562399e
child 6941 9d2c79c992d7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/flow-monitor/wscript	Tue Mar 22 16:56:10 2011 -0700
@@ -0,0 +1,27 @@
+## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
+
+def build(bld):
+    obj = bld.create_ns3_module('flow-monitor', ['internet', 'contrib'])
+    obj.source = ["model/%s" % s for s in [
+       'flow-monitor.cc',
+       'flow-classifier.cc',
+       'flow-probe.cc',
+       'ipv4-flow-classifier.cc',
+       'ipv4-flow-probe.cc',
+       'histogram.cc',	
+        ]]
+    obj.source.append("helper/flow-monitor-helper.cc")
+
+    headers = bld.new_task_gen('ns3header')
+    headers.module = 'flow-monitor'
+    headers.source = ["model/%s" % s for s in [
+       'flow-monitor.h',
+       'flow-probe.h',
+       'flow-classifier.h',
+       'ipv4-flow-classifier.h',
+       'ipv4-flow-probe.h',
+       'histogram.h',
+        ]]
+    headers.source.append("helper/flow-monitor-helper.h")
+
+    bld.ns3_python_bindings()