Fortran: Use same DOC for flags as other languages

Currently, only Fortran uses the string "Flags for Fortran compiler",
whereas C, CXX, CUDA all use the same, more descriptive string.
This commit is contained in:
Christian Pfeiffer
2017-11-08 14:50:58 +01:00
parent 2ae78569b4
commit 27b62fa4c5

View File

@@ -169,7 +169,7 @@ foreach(c "" _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO)
endforeach()
set (CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS_INIT}" CACHE STRING
"Flags for Fortran compiler.")
"Flags used by the compiler during all build types.")
include(CMakeCommonLanguageInclude)