From 83816cc6ec619f3c108734814837510e31370e99 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 23 Oct 2009 08:25:43 -0400 Subject: Add support for the g95 Fortran compiler This commit teaches CMake about the g95 compiler from http://www.g95.org We use 'G95' as the compiler id string, and add some basic flags. See issue #9241. --- Modules/Compiler/G95-Fortran.cmake | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Modules/Compiler/G95-Fortran.cmake (limited to 'Modules/Compiler') diff --git a/Modules/Compiler/G95-Fortran.cmake b/Modules/Compiler/G95-Fortran.cmake new file mode 100644 index 0000000000..cbd4661184 --- /dev/null +++ b/Modules/Compiler/G95-Fortran.cmake @@ -0,0 +1,7 @@ +set(CMAKE_Fortran_FLAGS_INIT "") +set(CMAKE_Fortran_FLAGS_DEBUG_INIT "-g") +set(CMAKE_Fortran_FLAGS_MINSIZEREL_INIT "-Os") +set(CMAKE_Fortran_FLAGS_RELEASE_INIT "-O3") +set(CMAKE_Fortran_FLAGS_RELWITHDEBINFO_INIT "-O2 -g") +set(CMAKE_Fortran_MODDIR_FLAG "-fmod=") +set(CMAKE_Fortran_VERBOSE_FLAG "-v") -- cgit v1.2.1