diff options
author | Christian Pfeiffer <cpfeiffer@live.de> | 2017-11-08 13:50:58 (GMT) |
---|---|---|
committer | Christian Pfeiffer <cpfeiffer@live.de> | 2017-11-08 13:50:58 (GMT) |
commit | 27b62fa4c564c1346bae6b957ba5cd6d9d32969c (patch) | |
tree | b1426e3a7e80044ebf80f97af9c26ea3ad19195c | |
parent | 2ae78569b43228026c929f3c1e7627119a091910 (diff) | |
download | CMake-27b62fa4c564c1346bae6b957ba5cd6d9d32969c.zip CMake-27b62fa4c564c1346bae6b957ba5cd6d9d32969c.tar.gz CMake-27b62fa4c564c1346bae6b957ba5cd6d9d32969c.tar.bz2 |
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.
-rw-r--r-- | Modules/CMakeFortranInformation.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/CMakeFortranInformation.cmake b/Modules/CMakeFortranInformation.cmake index 8005da6..b315d33 100644 --- a/Modules/CMakeFortranInformation.cmake +++ b/Modules/CMakeFortranInformation.cmake @@ -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) |