mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
Always add _CRT_SECURE_NO_WARNINGS to the preprocessor definition list to disable warnings about not using the safe functions introduced in MSVC8.
svn path=/trunk/; revision=30991
This commit is contained in:
parent
f076b05fed
commit
02a330f5da
1 changed files with 3 additions and 0 deletions
|
@ -351,6 +351,9 @@ MSVCBackend::_generate_vcproj ( const Module& module )
|
|||
|
||||
StringSet defines = common_defines;
|
||||
|
||||
// Always add _CRT_SECURE_NO_WARNINGS to disable warnings about not using the safe functions introduced in MSVC8.
|
||||
defines.insert ( "_CRT_SECURE_NO_WARNINGS" );
|
||||
|
||||
if ( debug )
|
||||
{
|
||||
defines.insert ( "_DEBUG" );
|
||||
|
|
Loading…
Reference in a new issue