mirror of
https://github.com/reactos/CMake.git
synced 2024-12-04 09:54:15 +00:00
39ebfc79e6
All Fortran sources need to be preprocessed before any source may be compiled so that module dependencies can be (later) extracted. Factor out an explicit preprocessing step preceding compilation. Use Ninja depfile dependencies on the preprocessing step and then compile the already-preprocessed source with a separate build statement that depends explicitly only on the preprocessor output. Later we will insert dynamic discovery of module dependencies between these steps.
13 lines
590 B
CMake
13 lines
590 B
CMake
include(Compiler/Intel)
|
|
__compiler_intel(Fortran)
|
|
|
|
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>")
|