summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler/Intel-Fortran.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-02-13 19:08:34 (GMT)
committerBrad King <brad.king@kitware.com>2019-02-14 15:23:02 (GMT)
commitd80ecba5c27ec249dc85c3a3559db822ef320d05 (patch)
tree1484c5669fbc156caf8dcd68f624759267428da8 /Modules/Compiler/Intel-Fortran.cmake
parent72057d9c1582f4b6dec66cd0675860c4c335636e (diff)
downloadCMake-d80ecba5c27ec249dc85c3a3559db822ef320d05.zip
CMake-d80ecba5c27ec249dc85c3a3559db822ef320d05.tar.gz
CMake-d80ecba5c27ec249dc85c3a3559db822ef320d05.tar.bz2
Fortran: Fix submodule file names across compilers
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
Diffstat (limited to 'Modules/Compiler/Intel-Fortran.cmake')
-rw-r--r--Modules/Compiler/Intel-Fortran.cmake3
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/Compiler/Intel-Fortran.cmake b/Modules/Compiler/Intel-Fortran.cmake
index a132055..5275ddf 100644
--- a/Modules/Compiler/Intel-Fortran.cmake
+++ b/Modules/Compiler/Intel-Fortran.cmake
@@ -1,6 +1,9 @@
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")