summaryrefslogtreecommitdiffstats
path: root/Modules/Platform
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2012-01-02 18:52:57 (GMT)
committerBrad King <brad.king@kitware.com>2012-01-02 18:56:33 (GMT)
commit35a58387794a42b96b6055205c59cde774cab3df (patch)
treee13793a25dd569f8366193e26c4d0bc102b3030d /Modules/Platform
parent40aedcbbaeddcb7e088c56e30f4252171e920baa (diff)
downloadCMake-35a58387794a42b96b6055205c59cde774cab3df.zip
CMake-35a58387794a42b96b6055205c59cde774cab3df.tar.gz
CMake-35a58387794a42b96b6055205c59cde774cab3df.tar.bz2
Intel: Fix Windows per-config Fortran flags (#12642)
Fix typo introduced in commit 66a08c10 (more uniform approach to enable language, 2004-08-26). The optimization option should be /O2 for Release configurations and /O1 for MinSizeRel. Suggested-by: He Yuqi <yuqi.he@gmail.com>
Diffstat (limited to 'Modules/Platform')
-rw-r--r--Modules/Platform/Windows-Intel-Fortran.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/Platform/Windows-Intel-Fortran.cmake b/Modules/Platform/Windows-Intel-Fortran.cmake
index c959287..5c016a8 100644
--- a/Modules/Platform/Windows-Intel-Fortran.cmake
+++ b/Modules/Platform/Windows-Intel-Fortran.cmake
@@ -6,6 +6,6 @@ set(CMAKE_Fortran_STANDARD_LIBRARIES_INIT "user32.lib")
__windows_compiler_intel(Fortran)
SET (CMAKE_Fortran_FLAGS_INIT "/W1 /nologo /fpp /libs:dll /threads")
SET (CMAKE_Fortran_FLAGS_DEBUG_INIT "/debug:full /dbglibs")
-SET (CMAKE_Fortran_FLAGS_MINSIZEREL_INIT "/O2 /D NDEBUG")
-SET (CMAKE_Fortran_FLAGS_RELEASE_INIT "/O1 /D NDEBUG")
-SET (CMAKE_Fortran_FLAGS_RELWITHDEBINFO_INIT "/O1 /debug:full /D NDEBUG")
+SET (CMAKE_Fortran_FLAGS_MINSIZEREL_INIT "/O1 /D NDEBUG")
+SET (CMAKE_Fortran_FLAGS_RELEASE_INIT "/O2 /D NDEBUG")
+SET (CMAKE_Fortran_FLAGS_RELWITHDEBINFO_INIT "/O2 /debug:full /D NDEBUG")