Make examples not be built by default

This commit is contained in:
Mitch Watrous
2011-04-12 14:35:16 -07:00
parent 46d63e113b
commit 1f9ea7d2ef
14 changed files with 37 additions and 36 deletions

View File

@@ -85,10 +85,10 @@ def read_config_file():
'''
# By default, all modules will be enabled, examples will be enabled,
# By default, all modules will be enabled, examples will be disabled,
# and tests will be disabled.
modules_enabled = ['all_modules']
examples_enabled = True
examples_enabled = False
tests_enabled = False
# See if the ns3 configuration file exists in the current working
@@ -111,7 +111,7 @@ def read_config_file():
modules_enabled = ['all_modules']
# Read in whether examples should be enabled or not.
value_if_missing = True
value_if_missing = False
examples_enabled = get_bool_from_file(dot_ns3rc_path, 'examples_enabled', value_if_missing)
# Read in whether tests should be enabled or not.