summaryrefslogtreecommitdiffstats
path: root/Source/cmFortranParser.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-02-13 18:42:51 (GMT)
committerBrad King <brad.king@kitware.com>2019-02-14 15:23:02 (GMT)
commit7ae329e2ed84f62165cb11794ad85c6c43dbd7dc (patch)
tree1a8c00471ec4e78f6f139858f43f9e239b3e1df0 /Source/cmFortranParser.h
parent6f23321d405930241fa431cfda7650f2993f0c19 (diff)
downloadCMake-7ae329e2ed84f62165cb11794ad85c6c43dbd7dc.zip
CMake-7ae329e2ed84f62165cb11794ad85c6c43dbd7dc.tar.gz
CMake-7ae329e2ed84f62165cb11794ad85c6c43dbd7dc.tar.bz2
Fortran: Factor out .mod and .smod file name construction
Diffstat (limited to 'Source/cmFortranParser.h')
-rw-r--r--Source/cmFortranParser.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmFortranParser.h b/Source/cmFortranParser.h
index 8d4c90b..cc5c113 100644
--- a/Source/cmFortranParser.h
+++ b/Source/cmFortranParser.h
@@ -137,6 +137,10 @@ struct cmFortranParser_s
bool FindIncludeFile(const char* dir, const char* includeName,
std::string& fileName);
+ std::string ModName(std::string const& mod_name) const;
+ std::string SModName(std::string const& mod_name,
+ std::string const& sub_name) const;
+
// The include file search path.
std::vector<std::string> IncludePath;