Common Scons scripts repo for the OpenVicProject repos
- Call
env.SetupOptions()
and use the return value to add your options:opts = env.SetupOptions() opts.Add(BoolVariable("example", "Is an example", false))
- When options are finished call
env.FinalizeOptions()
then setup your scons script using env.