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

Side by Side Diff: src/core/wscript

Issue 342870043: Visual Studio conditional code for core module (Closed)
Patch Set: Corrections Created 5 years, 11 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
1 ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- 1 ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2 import sys 2 import sys
3 3
4 from waflib import Options 4 from waflib import Options
5 import wutils 5 import wutils
6 6
7 int64x64 = { 7 int64x64 = {
8 # implementation name: [define, env, highprec] 8 # implementation name: [define, env, highprec]
9 'default': ['INT64X64_USE_128', 'INT64X64_USE_128', '128-bit integer'] ,· 9 'default': ['INT64X64_USE_128', 'INT64X64_USE_128', '128-bit integer'] ,·
10 'int128': ['INT64X64_USE_128', 'INT64X64_USE_128', '128-bit integer'] ,· 10 'int128': ['INT64X64_USE_128', 'INT64X64_USE_128', '128-bit integer'] ,·
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 'test/traced-callback-test-suite.cc', 212 'test/traced-callback-test-suite.cc',
213 'test/type-traits-test-suite.cc', 213 'test/type-traits-test-suite.cc',
214 'test/watchdog-test-suite.cc', 214 'test/watchdog-test-suite.cc',
215 'test/hash-test-suite.cc', 215 'test/hash-test-suite.cc',
216 'test/type-id-test-suite.cc', 216 'test/type-id-test-suite.cc',
217 ] 217 ]
218 218
219 headers = bld(features='ns3header') 219 headers = bld(features='ns3header')
220 headers.module = 'core' 220 headers.module = 'core'
221 headers.source = [ 221 headers.source = [
222 'model/ns3dll.h',
222 'model/nstime.h', 223 'model/nstime.h',
223 'model/event-id.h', 224 'model/event-id.h',
224 'model/event-impl.h', 225 'model/event-impl.h',
225 'model/simulator.h', 226 'model/simulator.h',
226 'model/simulator-impl.h', 227 'model/simulator-impl.h',
227 'model/default-simulator-impl.h', 228 'model/default-simulator-impl.h',
228 'model/scheduler.h', 229 'model/scheduler.h',
229 'model/list-scheduler.h', 230 'model/list-scheduler.h',
230 'model/map-scheduler.h', 231 'model/map-scheduler.h',
231 'model/heap-scheduler.h', 232 'model/heap-scheduler.h',
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 'test/rng-test-suite.cc', 365 'test/rng-test-suite.cc',
365 'test/random-variable-stream-test-suite.cc' 366 'test/random-variable-stream-test-suite.cc'
366 ]) 367 ])
367 368
368 if (bld.env['ENABLE_EXAMPLES']): 369 if (bld.env['ENABLE_EXAMPLES']):
369 bld.recurse('examples') 370 bld.recurse('examples')
370 371
371 pymod = bld.ns3_python_bindings() 372 pymod = bld.ns3_python_bindings()
372 if pymod is not None: 373 if pymod is not None:
373 pymod.source += ['bindings/module_helpers.cc'] 374 pymod.source += ['bindings/module_helpers.cc']
OLDNEW
« src/core/test/threaded-test-suite.cc ('K') | « src/core/test/threaded-test-suite.cc ('k') | no next file » | no next file with comments »

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