diff options
author | Steven Knight <knight@baldmt.com> | 2010-07-23 12:24:56 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2010-07-23 12:24:56 (GMT) |
commit | 83fd0fd26c8e15ce76b95366fe4e52948bfb2cc6 (patch) | |
tree | 272f578ae6bc7f75f687bef898de8243bc8a6a29 /src/engine | |
parent | 6edc938ac25bfbb9c6a0ae0cd539121ffb40f67f (diff) | |
download | SCons-83fd0fd26c8e15ce76b95366fe4e52948bfb2cc6.zip SCons-83fd0fd26c8e15ce76b95366fe4e52948bfb2cc6.tar.gz SCons-83fd0fd26c8e15ce76b95366fe4e52948bfb2cc6.tar.bz2 |
Issue 2551: Add an entry in the Builders section for Command(),
with a pointer to the Function entry.
Diffstat (limited to 'src/engine')
-rw-r--r-- | src/engine/SCons/Environment.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/engine/SCons/Environment.xml b/src/engine/SCons/Environment.xml index b5e7026..b2be10d 100644 --- a/src/engine/SCons/Environment.xml +++ b/src/engine/SCons/Environment.xml @@ -760,6 +760,17 @@ wx_env = env.Clone(parse_flags = '!wx-config --cflags --cxxflags') </summary> </scons_function> +<builder name="Command"> +<summary> +The &b-Command; "Builder" is actually implemented +as a function that looks like a Builder, +but actually takes an additional argument of the action +from which the Builder should be made. +See the &f-link-Command; function description +for the calling syntax and details. +</summary> +</builder> + <scons_function name="Command"> <arguments> (target, source, action, [key=val, ...]) |