summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2005-08-13 15:33:43 (GMT)
committerSteven Knight <knight@baldmt.com>2005-08-13 15:33:43 (GMT)
commitbfcb4787761f4e68a99961cc4676ee2917d8a7b3 (patch)
tree681c616530aecc39d192ff2270578a7c58430621 /doc
parent397834382e9994ed549d7677f30439fbda3fae7c (diff)
downloadSCons-bfcb4787761f4e68a99961cc4676ee2917d8a7b3.zip
SCons-bfcb4787761f4e68a99961cc4676ee2917d8a7b3.tar.gz
SCons-bfcb4787761f4e68a99961cc4676ee2917d8a7b3.tar.bz2
Handle Visual Studio project and solution files in Unicode. (Chen Lee)
Diffstat (limited to 'doc')
-rw-r--r--doc/man/scons.122
1 files changed, 13 insertions, 9 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1
index 5db1f53..a1fc076 100644
--- a/doc/man/scons.1
+++ b/doc/man/scons.1
@@ -4882,15 +4882,19 @@ This may or may not be set,
depending on the specific C compiler being used.
.IP _concat
-A function used to produce variables like $_CPPINCFLAGS. It takes
-four or five
-arguments: a prefix to concatenate onto each element, a list of
-elements, a suffix to concatenate onto each element, an environment
-for variable interpolation, and an optional function that will be
-called to transform the list before concatenation.
-
-.ES
-env['_CPPINCFLAGS'] = '$( ${_concat(INCPREFIX, CPPPATH, INCSUFFIX, __env__, RDirs)} $)',
+A function used to produce variables like $_CPPINCFLAGS.
+It takes four to seven arguments:
+a prefix to concatenate onto each element;
+a list of elements;
+a suffix to concatenate onto each element;
+an environment for variable interpolation;
+an optional function that will be
+called to transform the list before concatenation;
+a target or list of targets;
+and a source or list of sources.
+
+.ES
+env['_CPPINCFLAGS'] = '$( ${_concat(INCPREFIX, CPPPATH, INCSUFFIX, __env__, RDirs, TARGET, SOURCE)} $)',
.EE
.IP CPPDEFINES