mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-01-09 18:31:23 +00:00
17 lines
523 B
CMake
17 lines
523 B
CMake
|
include(Compiler/Clang)
|
||
|
__compiler_clang(Fortran)
|
||
|
|
||
|
set(CMAKE_Fortran_SUBMODULE_SEP "-")
|
||
|
set(CMAKE_Fortran_SUBMODULE_EXT ".mod")
|
||
|
|
||
|
set(CMAKE_Fortran_PREPROCESS_SOURCE
|
||
|
"<CMAKE_Fortran_COMPILER> -cpp <DEFINES> <INCLUDES> <FLAGS> -E <SOURCE> > <PREPROCESSED_SOURCE>")
|
||
|
|
||
|
set(CMAKE_Fortran_FORMAT_FIXED_FLAG "-ffixed-form")
|
||
|
set(CMAKE_Fortran_FORMAT_FREE_FLAG "-ffree-form")
|
||
|
|
||
|
set(CMAKE_Fortran_MODDIR_FLAG "-J")
|
||
|
|
||
|
set(CMAKE_Fortran_COMPILE_OPTIONS_PREPROCESS_ON "-cpp")
|
||
|
set(CMAKE_Fortran_COMPILE_OPTIONS_PREPROCESS_OFF "-nocpp")
|