diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-02-16 16:34:23 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-02-16 16:34:23 (GMT) |
commit | 43859e36cfa3dede4f935ada5ad08ee6e7eb1d76 (patch) | |
tree | 622fb609e84cbefa6e34bd2a60bc084ab15b5ab7 /Source/cmMakefile.h | |
parent | fce56c57c497ede3a7afcbc7965846cc8bad9db2 (diff) | |
download | CMake-43859e36cfa3dede4f935ada5ad08ee6e7eb1d76.zip CMake-43859e36cfa3dede4f935ada5ad08ee6e7eb1d76.tar.gz CMake-43859e36cfa3dede4f935ada5ad08ee6e7eb1d76.tar.bz2 |
ENH: add new commands fro find library and find program
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index a23fa11..2556601 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -339,7 +339,13 @@ public: * entry in the m_Definitions map. Also @var@ is * expanded to match autoconf style expansions. */ - void ExpandVariblesInString(std::string& source); + void ExpandVariablesInString(std::string& source); + + /** + * Expand variables in the makefiles ivars such as link directories etc + */ + void ExpandVariables(); + protected: std::string m_Prefix; std::vector<std::string> m_AuxSourceDirectories; // @@ -384,11 +390,6 @@ private: */ std::string GetParentListFileName(const char *listFileName); - /** - * Parse a file for includes links and libs - */ - void ExpandVaribles(); - void ReadClasses(std::ifstream& fin, bool t); friend class cmMakeDepend; // make depend needs direct access // to the m_Classes array |