diff options
author | Brad King <brad.king@kitware.com> | 2011-02-22 19:30:35 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2011-02-22 19:30:35 (GMT) |
commit | fe07b5eae6e1216d576044b47802db084a4a6f7a (patch) | |
tree | 23daff243c7c0abba0f92b9f641d58f75fa20f91 | |
parent | d0b32ca5cd729fe7a51a59794ba6c2e6931f674b (diff) | |
parent | d503206fbea7aab6a4eaae08acf1ab53b0997df3 (diff) | |
download | CMake-fe07b5eae6e1216d576044b47802db084a4a6f7a.zip CMake-fe07b5eae6e1216d576044b47802db084a4a6f7a.tar.gz CMake-fe07b5eae6e1216d576044b47802db084a4a6f7a.tar.bz2 |
Merge topic 'add-floating-point-flags'
d503206 Add FloatingPointModel to the list of known VS7 generator flags.
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index e839ed3..f65a134 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -381,6 +381,11 @@ cmVS7FlagTable cmLocalVisualStudio7GeneratorFlagTable[] = "Use sse2 instructions", "2", 0}, {"EnableEnhancedInstructionSet", "arch:SSE", "Use sse instructions", "1", 0}, + {"FloatingPointModel", "fp:precise", + "Use precise floating point model", "0", 0}, + {"FloatingPointModel", "fp:strict", + "Use strict floating point model", "1", 0}, + {"FloatingPointModel", "fp:fast", "Use fast floating point model", "2", 0}, {"FavorSizeOrSpeed", "Ot", "Favor fast code", "1", 0}, {"FavorSizeOrSpeed", "Os", "Favor small code", "2", 0}, {"CompileAs", "TC", "Compile as c code", "1", 0}, |