diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/scons.1 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 7c93e0e..7be2a37 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -1791,6 +1791,15 @@ env2 = env.Copy() env3 = env.Copy(CCFLAGS = '-g') .EE +Additionally, a list of tools may be specified, as in the Environment +constructor: + +.ES +def MyTool(env): env['FOO'] = 'bar' +env4 = env.Copy(tools = ['msvc', MyTool]) +.EE + + .TP .RI CVS( repository ", " module ) A factory function that |