cmake/Modules/Compiler/GNU-Fortran.cmake

16 lines
442 B
CMake
Raw Normal View History

2010-03-17 14:00:29 +02:00
include(Compiler/GNU)
__compiler_gnu(Fortran)
2012-02-18 12:40:36 +02:00
set(CMAKE_Fortran_FORMAT_FIXED_FLAG "-ffixed-form")
set(CMAKE_Fortran_FORMAT_FREE_FLAG "-ffree-form")
2010-03-17 14:00:29 +02:00
# No -DNDEBUG for Fortran.
2013-03-16 19:13:01 +02:00
set(CMAKE_Fortran_FLAGS_MINSIZEREL_INIT "-Os")
set(CMAKE_Fortran_FLAGS_RELEASE_INIT "-O3")
2010-03-17 14:00:29 +02:00
2015-08-17 11:37:30 +02:00
# No -isystem for Fortran because it will not find .mod files.
unset(CMAKE_INCLUDE_SYSTEM_FLAG_Fortran)
2010-03-17 14:00:29 +02:00
# Fortran-specific feature flags.
2013-03-16 19:13:01 +02:00
set(CMAKE_Fortran_MODDIR_FLAG -J)