summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2003-01-20 21:59:02 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2003-01-20 21:59:02 (GMT)
commitc4fa5d1fdf8a8bdc03872f148b29432e8f55ae9a (patch)
treead9ce56528b85193ae6f75a51b1418498e0c59b3 /Source/cmMakefile.h
parentece369eaf3bb463a4a9675f1aed69199ce8b3832 (diff)
downloadCMake-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.h10
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;