cmake/Modules/Compiler/GNU-Fortran.cmake

19 lines
602 B
CMake
Raw Normal View History

2010-03-17 14:00:29 +02:00
include(Compiler/GNU)
__compiler_gnu(Fortran)
2016-10-30 18:24:19 +01:00
set(CMAKE_Fortran_PREPROCESS_SOURCE
"<CMAKE_Fortran_COMPILER> -cpp <DEFINES> <INCLUDES> <FLAGS> -E <SOURCE> -o <PREPROCESSED_SOURCE>")
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.
2016-10-30 18:24:19 +01:00
string(APPEND CMAKE_Fortran_FLAGS_MINSIZEREL_INIT " -Os")
string(APPEND 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)