summaryrefslogtreecommitdiffstats
path: root/Source/cmSourceFile.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-04-13 20:35:26 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-04-13 20:35:26 (GMT)
commit826405a1b668900ef4d5ecc0b676197e978bb80f (patch)
treeff388e4ea49a6368370e2d67de5486d0a4a7c7ae /Source/cmSourceFile.h
parent030dd4b91e4023ce73ae0c9ca675227202ed1e1b (diff)
downloadCMake-826405a1b668900ef4d5ecc0b676197e978bb80f.zip
CMake-826405a1b668900ef4d5ecc0b676197e978bb80f.tar.gz
CMake-826405a1b668900ef4d5ecc0b676197e978bb80f.tar.bz2
ENH: Speedup by storing source name without last extension
Diffstat (limited to 'Source/cmSourceFile.h')
-rw-r--r--Source/cmSourceFile.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmSourceFile.h b/Source/cmSourceFile.h
index ea78397..c8ad1dd 100644
--- a/Source/cmSourceFile.h
+++ b/Source/cmSourceFile.h
@@ -101,6 +101,11 @@ public:
const std::vector<std::string> &GetDepends() const {return m_Depends;}
std::vector<std::string> &GetDepends() {return m_Depends;}
+ /**
+ * Get the source name without last extension
+ */
+ const std::string& GetSourceNameWithoutLastExtension();
+
private:
std::map<cmStdString,cmStdString> m_Properties;
cmCustomCommand *m_CustomCommand;
@@ -108,6 +113,7 @@ private:
std::string m_SourceName;
std::string m_SourceExtension;
std::vector<std::string> m_Depends;
+ std::string m_SourceNameWithoutLastExtension;
};
#endif