1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
# A list of the modules that will be enabled when ns-3 is run.
# Modules that depend on the listed modules will be enabled also.
#
# All modules can be enabled by emptying the list.
set(ns3rc_enabled_modules @ns3rc_enabled_modules@)
# A list of the modules that will be disabled when ns-3 is run.
# Modules that depend on the listed modules will be disabled also.
#
# If the list is empty, no module will be disabled.
set(ns3rc_disabled_modules @ns3rc_disabled_modules@)
# Set this equal to ON if you want examples to be run.
set(ns3rc_examples_enabled @ns3rc_examples_enabled@)
# Set this equal to ON if you want tests to be run.
set(ns3rc_tests_enabled @ns3rc_tests_enabled@)
# Override other ns-3 settings by setting their values below
# Note: command-line settings will also be overridden.
#set(NS3_LOG ON)
|