cmake/Modules/Compiler/GNU-Fortran.cmake

18 lines
511 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
# We require updates to CMake C++ code to support preprocessing rules
# for Fortran.
2013-03-16 19:13:01 +02:00
set(CMAKE_Fortran_CREATE_PREPROCESSED_SOURCE)
set(CMAKE_Fortran_CREATE_ASSEMBLY_SOURCE)
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)