mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
Use the dll runtime library.
Fixes building taskmgr with VS and probably others svn path=/trunk/; revision=41302
This commit is contained in:
parent
c1787d3a8a
commit
c4c37910a4
1 changed files with 1 additions and 1 deletions
|
@ -410,7 +410,7 @@ MSVCBackend::_generate_vcproj ( const Module& module )
|
|||
fprintf ( OUT, "\t\t\t\tForcedIncludeFiles=\"%s\"\r\n", "warning.h");
|
||||
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\tRuntimeLibrary=\"%d\"\r\n", debug ? 3 : 2 ); // 3=/MDd 2=/MD
|
||||
fprintf ( OUT, "\t\t\t\tBufferSecurityCheck=\"FALSE\"\r\n" );
|
||||
fprintf ( OUT, "\t\t\t\tEnableFunctionLevelLinking=\"FALSE\"\r\n" );
|
||||
|
||||
|
|
Loading…
Reference in a new issue