diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-01-20 21:59:02 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-01-20 21:59:02 (GMT) |
commit | c4fa5d1fdf8a8bdc03872f148b29432e8f55ae9a (patch) | |
tree | ad9ce56528b85193ae6f75a51b1418498e0c59b3 /Source/cmMakefile.h | |
parent | ece369eaf3bb463a4a9675f1aed69199ce8b3832 (diff) | |
download | CMake-c4fa5d1fdf8a8bdc03872f148b29432e8f55ae9a.zip CMake-c4fa5d1fdf8a8bdc03872f148b29432e8f55ae9a.tar.gz CMake-c4fa5d1fdf8a8bdc03872f148b29432e8f55ae9a.tar.bz2 |
ENH: add a new command that allows exports of library dependencies from a project to a file
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index e0cf827..e472781 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -547,6 +547,11 @@ public: */ void ExpandArguments(std::vector<cmListFileArgument> const& inArgs, std::vector<std::string>& outArgs); + /** + * Get the instance + */ + cmake *GetCMakeInstance() const; + protected: // add link libraries and directories to the target void AddGlobalLinkInformation(const char* name, cmTarget& target); @@ -609,11 +614,6 @@ private: void AddDefaultDefinitions(); std::list<cmFunctionBlocker *> m_FunctionBlockers; - /** - * Get the instance - */ - cmake *GetCMakeInstance() const; - typedef std::map<cmStdString, cmData*> DataMap; DataMap m_DataMap; bool m_Inheriting; |