Add use of $CPPDEFINES to $RCCOM on MinGW. (Amir Szekely)
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Sun, 6 Nov 2005 00:36:35 +0000 (00:36 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Sun, 6 Nov 2005 00:36:35 +0000 (00:36 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@1379 fdb21ef1-2011-0410-befe-b5e4ea1792b1

doc/man/scons.1
src/CHANGES.txt
src/engine/SCons/Tool/mingw.py
src/engine/SCons/Tool/msvc.xml

index ef6e8b8fd243a3d641144f6d8e832f55054ee531..47a74d47f83c75b8f7f0bc61c0c8688794d6efeb 100644 (file)
@@ -7066,13 +7066,16 @@ The archive indexer.
 General options passed to the archive indexer.
 
 .IP RC
-The resource compiler used by the RES builder.
+The resource compiler used to build
+a Microsoft Visual C++ resource file.
 
 .IP RCCOM
-The command line used by the RES builder.
+The command line used to build
+a Microsoft Visual C++ resource file.
 
 .IP RCCOMSTR
-The string displayed when invoking the resource compiler.
+The string displayed when invoking the resource compiler
+to build a Microsoft Visual C++ resource file.
 If this is not set, then $RCCOM (the command line) is displayed.
 
 .IP RCFLAGS
index f65e06183c333d95fc8d2531facf03e7181b1f16..de7bf8ecde571dbae27c79f05bee86f469327f1e 100644 (file)
@@ -710,6 +710,8 @@ RELEASE 0.97 - XXX
 
   - Update EnsureSConsVersion() to support revision numbers.
 
+  - Add use of $CPPDEFINES to $RCCOM (resource file compilation) on MinGW.
+
   From Dobes Vandermeer:
 
   - Add support for SCC and other settings in Microsoft Visual
index 2e737e14c64937971878a00e0e6a05c959deb18f..300198e43e8c2517720d4efc5e3574c7485055d4 100644 (file)
@@ -142,7 +142,7 @@ def generate(env):
     env['RCINCFLAGS'] = '$( ${_concat(RCINCPREFIX, CPPPATH, RCINCSUFFIX, __env__, RDirs, TARGET, SOURCE)} $)'
     env['RCINCPREFIX'] = '--include-dir '
     env['RCINCSUFFIX'] = ''
-    env['RCCOM'] = '$RC $RCINCFLAGS $RCINCPREFIX ${SOURCE.dir} $RCFLAGS -i $SOURCE -o $TARGET'
+    env['RCCOM'] = '$RC $_CPPDEFFLAGS $RCINCFLAGS ${RCINCPREFIX}${SOURCE.dir} $RCFLAGS -i $SOURCE -o $TARGET'
     env['BUILDERS']['RES'] = res_builder
     
     # Some setting from the platform also have to be overridden:
index 426014b139e23b6c1f73ec4c4a5072598b977b1c..76529b115c8a01ccbe03ff6b18bbc985f311920a 100644 (file)
@@ -88,19 +88,22 @@ env['PCHSTOP'] = 'StdAfx.h'
 
 <cvar name="RC">
 <summary>
-The resource compiler used by the RES builder.
+The resource compiler used to build
+a Microsoft Visual C++ resource file.
 </summary>
 </cvar>
 
 <cvar name="RCCOM">
 <summary>
-The command line used by the RES builder.
+The command line used to build
+a Microsoft Visual C++ resource file.
 </summary>
 </cvar>
 
 <cvar name="RCCOMSTR">
 <summary>
-The string displayed when invoking the resource compiler.
+The string displayed when invoking the resource compiler
+to build a Microsoft Visual C++ resource file.
 If this is not set, then &cv-RCCOM; (the command line) is displayed.
 </summary>
 </cvar>