samples/main-test-sync also depends on the realtime optional feature

This commit is contained in:
Gustavo J. A. M. Carneiro
2009-01-25 15:44:55 +00:00
parent d7cf4f2462
commit e300331c6a

View File

@@ -19,7 +19,7 @@ def build(bld):
obj = bld.create_ns3_program('main-test')
obj.source = 'main-test.cc'
if bld.env['ENABLE_THREADING']:
if bld.env['ENABLE_THREADING'] and bld.env["ENABLE_REAL_TIME"]:
obj = bld.create_ns3_program('main-test-sync')
obj.source = 'main-test-sync.cc'