Author: cwittich
Date: Sat Mar 3 00:04:41 2007
New Revision: 25960
URL:
http://svn.reactos.org/svn/reactos?rev=25960&view=rev
Log:
some configuration changes for debug builds
Modified:
trunk/reactos/tools/rbuild/backend/msvc/vcprojmaker.cpp
Modified: trunk/reactos/tools/rbuild/backend/msvc/vcprojmaker.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/tools/rbuild/backend/msvc/…
==============================================================================
--- trunk/reactos/tools/rbuild/backend/msvc/vcprojmaker.cpp (original)
+++ trunk/reactos/tools/rbuild/backend/msvc/vcprojmaker.cpp Sat Mar 3 00:04:41 2007
@@ -353,11 +353,11 @@
}
fprintf ( OUT, "\"\r\n" );
fprintf ( OUT, "\t\t\t\tForcedIncludeFiles=\"%s\"\r\n",
"warning.h");
- fprintf ( OUT, "\t\t\t\tMinimalRebuild=\"%s\"\r\n", speed ?
"FALSE" : "TRUE" );
- fprintf ( OUT, "\t\t\t\tBasicRuntimeChecks=\"%s\"\r\n", sys ? 0 :
(debug ? "3" : "0") );
+ fprintf ( OUT, "\t\t\t\tMinimalRebuild=\"%s\"\r\n", speed ?
"TRUE" : "FALSE" );
+ fprintf ( OUT, "\t\t\t\tBasicRuntimeChecks=\"0\"\r\n" );
fprintf ( OUT, "\t\t\t\tRuntimeLibrary=\"%d\"\r\n", debug ? 1 : 5
); // 1=/MTd 5=/MT
- fprintf ( OUT, "\t\t\t\tBufferSecurityCheck=\"%s\"\r\n", sys ?
"FALSE" : (debug ? "TRUE" : "FALSE" ));
- fprintf ( OUT, "\t\t\t\tEnableFunctionLevelLinking=\"%s\"\r\n",
debug ? "TRUE" : "FALSE" );
+ fprintf ( OUT, "\t\t\t\tBufferSecurityCheck=\"FALSE\"\r\n" );
+ fprintf ( OUT, "\t\t\t\tEnableFunctionLevelLinking=\"FALSE\"\r\n"
);
if ( module.pch != NULL )
{