https://github.com/Kitware/CMake
Raw File
Tip revision: 4abdee6ba3a5234f6b5fb9d6441ef09c99d79ca7 authored by Brad King on 05 November 2013, 17:30:20 UTC
CMake 2.8.12.1
Tip revision: 4abdee6
XL-Fortran.cmake
include(Compiler/XL)
__compiler_xl(Fortran)

set(CMAKE_Fortran_FORMAT_FIXED_FLAG "-qfixed") # [=<right_margin>]
set(CMAKE_Fortran_FORMAT_FREE_FLAG "-qfree") # [=f90|ibm]

set(CMAKE_Fortran_MODDIR_FLAG "-qmoddir=")

set(CMAKE_Fortran_DEFINE_FLAG "-WF,-D")

# -qthreaded     = Ensures that all optimizations will be thread-safe
# -qhalt=e       = Halt on error messages (rather than just severe errors)
set(CMAKE_Fortran_FLAGS_INIT "-qthreaded -qhalt=e")

# We require updates to CMake C++ code to support preprocessing rules for Fortran.
set(CMAKE_Fortran_CREATE_PREPROCESSED_SOURCE)
set(CMAKE_Fortran_CREATE_ASSEMBLY_SOURCE)
back to top