mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 12:09:48 +00:00
5c0c635a09
Define a "Fortran_FORMAT" target and source file property. Initialize the target property from a "CMAKE_Fortran_FORMAT" variable. Interpret values "FIXED" and "FREE" to indicate the source file format. Append corresponding flags to the compiler command line.
7 lines
236 B
CMake
7 lines
236 B
CMake
set(CMAKE_Fortran_VERBOSE_FLAG "-v")
|
|
set(CMAKE_Fortran_MODOUT_FLAG -em)
|
|
set(CMAKE_Fortran_MODDIR_FLAG -J)
|
|
set(CMAKE_Fortran_MODDIR_DEFAULT .)
|
|
set(CMAKE_Fortran_FORMAT_FIXED_FLAG "-f fixed")
|
|
set(CMAKE_Fortran_FORMAT_FREE_FLAG "-f free")
|