mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 11:22:21 -06:00
The naming convention for submodule files varies across compilers. Add a table to the compiler information modules and thread the information through to the Fortran module dependency parser. Fill out the table for compiler ids known to support Fortran submodules. Fixes: #18746
16 lines
669 B
CMake
16 lines
669 B
CMake
include(Compiler/Intel)
|
|
__compiler_intel(Fortran)
|
|
|
|
set(CMAKE_Fortran_SUBMODULE_SEP "@")
|
|
set(CMAKE_Fortran_SUBMODULE_EXT ".smod")
|
|
|
|
set(CMAKE_Fortran_MODDIR_FLAG "-module ")
|
|
set(CMAKE_Fortran_FORMAT_FIXED_FLAG "-fixed")
|
|
set(CMAKE_Fortran_FORMAT_FREE_FLAG "-free")
|
|
|
|
set(CMAKE_Fortran_CREATE_PREPROCESSED_SOURCE "<CMAKE_Fortran_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -E <SOURCE> > <PREPROCESSED_SOURCE>")
|
|
set(CMAKE_Fortran_CREATE_ASSEMBLY_SOURCE "<CMAKE_Fortran_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -S <SOURCE> -o <ASSEMBLY_SOURCE>")
|
|
|
|
set(CMAKE_Fortran_PREPROCESS_SOURCE
|
|
"<CMAKE_Fortran_COMPILER> -fpp <DEFINES> <INCLUDES> <FLAGS> -E <SOURCE> > <PREPROCESSED_SOURCE>")
|