summaryrefslogtreecommitdiff
path: root/Modules/Compiler/Cray-Fortran.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-03-05 08:08:16 -0500
committerBrad King <brad.king@kitware.com>2021-03-05 08:11:05 -0500
commitef513fe3d1d864d865d7143699834228988a7cd7 (patch)
tree8c9975951673ad29b463c8bdcd41d394d363f05d /Modules/Compiler/Cray-Fortran.cmake
parent12a139f2b6610e688be3d2bd317d46f0ce6ddf1f (diff)
downloadcmake-ef513fe3d1d864d865d7143699834228988a7cd7.tar.gz
Cray: Enable explicit Fortran preprocessing for Ninja generator
Cray 11.0 adds support for preprocessing with output written to a specified file (instead of always next to the source). Use it to enable Cray Fortran with the Ninja generator. Patch-by: James Elliott Fixes: #20731
Diffstat (limited to 'Modules/Compiler/Cray-Fortran.cmake')
-rw-r--r--Modules/Compiler/Cray-Fortran.cmake4
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/Compiler/Cray-Fortran.cmake b/Modules/Compiler/Cray-Fortran.cmake
index 696ae76074..0d5e1c7679 100644
--- a/Modules/Compiler/Cray-Fortran.cmake
+++ b/Modules/Compiler/Cray-Fortran.cmake
@@ -19,3 +19,7 @@ else()
set(CMAKE_Fortran_COMPILE_OPTIONS_PREPROCESS_ON "-eZ")
set(CMAKE_Fortran_COMPILE_OPTIONS_PREPROCESS_OFF "-dZ")
endif()
+
+if (NOT CMAKE_Fortran_COMPILER_VERSION VERSION_LESS 11.0)
+ set(CMAKE_Fortran_PREPROCESS_SOURCE "<CMAKE_Fortran_COMPILER> -o <PREPROCESSED_SOURCE> <DEFINES> <INCLUDES> <FLAGS> -eP <SOURCE>")
+endif()