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/cmGlobalGenerator.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/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index ee2a1cb..8b9176c 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -98,6 +98,8 @@ public: return this->m_CMakeInstance; }; void SetConfiguredFilesPath(const char* s){m_ConfiguredFilesPath = s;} + void GetLocalGenerators(std::vector<cmLocalGenerator *>&g) { g = m_LocalGenerators;} + protected: cmStdString m_FindMakeProgramFile; cmStdString m_ConfiguredFilesPath; |