Bug 2564404: FatalWarnings has no effect with gmake target

This commit is contained in:
starkos 2009-02-05 15:45:32 +00:00
parent 7b6d53e6ec
commit 7124c4d80d
3 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,7 @@
4.1 (in progress)
-----
- Bug 2564404: FatalWarnings has no effect with gmake target
- Support links and libdirs for Visual Studio static libraries

View File

@ -3,6 +3,8 @@ project "CppConsoleApp"
kind "ConsoleApp"
language "C++"
flags { "FatalWarnings", "ExtraWarnings" }
files { "*.cpp" }
includedirs { "I:/Code" }

View File

@ -16,7 +16,7 @@
local cflags =
{
ExtraWarnings = "-Wall",
FatalWarning = "-Werror",
FatalWarnings = "-Werror",
NoFramePointer = "-fomit-frame-pointer",
Optimize = "-O2",
OptimizeSize = "-Os",