Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(162)

Side by Side Diff: src/http/wscript

Issue 4940041: HTTP Traffic Generator
Patch Set: Created 12 years, 7 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
3 def build(bld):
4 module = bld.create_ns3_module('http', ['internet', 'config-store', 'tools', 'applications'])
Tom Henderson 2012/03/02 02:04:09 why does it depend on config-store? Just for an e
5 module.source = [
6 'model/http-client.cc',
7 'model/http-server.cc',
8 'model/http-random-variable.cc',
9 'model/http-distribution.cc',
10 'model/http-runtime-variable.cc',
11 'model/http-seq-header.cc',
12 'helper/http-helper.cc',
13 ]
14 ········
15 http_test = bld.create_ns3_module_test_library('http')
16 http_test.source = [
17 'test/http-test-suite.cc',
18 ]
19 ········
20 headers = bld.new_task_gen('ns3header')
21 headers.module = 'http'
22 headers.source = [
23 'model/http-client.h',
24 'model/http-server.h',
25 'model/http-random-variable.h',
26 'model/http-distribution.h',
27 'model/http-runtime-variable.h',
28 'model/http-seq-header.h',
29 'helper/http-helper.h',
30 ]
31
32 if (bld.env['ENABLE_EXAMPLES']):
33 bld.add_subdirs('examples')
34 ······
35 bld.ns3_python_bindings()
OLDNEW

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b