diff options
author | David Cole <david.cole@kitware.com> | 2011-02-01 18:32:43 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2011-02-01 18:37:57 (GMT) |
commit | 15e422249eab4d920ffeb3de08057d35f3bc6387 (patch) | |
tree | c40aacc4c1bfaade4c06142fbdba3a799710923f /Source/cmGlobalVisualStudio8Generator.cxx | |
parent | 6cf5772a934f8408dbf0615a0a981239f461a28f (diff) | |
download | CMake-15e422249eab4d920ffeb3de08057d35f3bc6387.zip CMake-15e422249eab4d920ffeb3de08057d35f3bc6387.tar.gz CMake-15e422249eab4d920ffeb3de08057d35f3bc6387.tar.bz2 |
VS9: Map enable/disable PREfast flags (#10638)
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.cxx b/Source/cmGlobalVisualStudio8Generator.cxx index 2d080df..b066179 100644 --- a/Source/cmGlobalVisualStudio8Generator.cxx +++ b/Source/cmGlobalVisualStudio8Generator.cxx @@ -358,6 +358,9 @@ static cmVS7FlagTable cmVS8ExtraFlagTable[] = {"ExceptionHandling", "EHsc", "enable c++ exceptions", "1", 0}, {"ExceptionHandling", "EHa", "enable SEH exceptions", "2", 0}, + {"EnablePREfast", "analyze", "", "TRUE", 0}, + {"EnablePREfast", "analyze-", "", "FALSE", 0}, + {0,0,0,0,0} }; cmIDEFlagTable const* cmGlobalVisualStudio8Generator::GetExtraFlagTableVS8() |