diff options
Diffstat (limited to 'Source/cmAddLibraryCommand.h')
-rw-r--r-- | Source/cmAddLibraryCommand.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/cmAddLibraryCommand.h b/Source/cmAddLibraryCommand.h index e13870e..cb41ccc 100644 --- a/Source/cmAddLibraryCommand.h +++ b/Source/cmAddLibraryCommand.h @@ -44,6 +44,13 @@ public: virtual bool InitialPass(std::vector<std::string> const& args); /** + * This is called at the end after all the information specified by + * the command is accumulated. This is where we add in the + * dependencies that were globally specified. + */ + virtual void FinalPass(); + + /** * The name of the command as specified in CMakeList.txt. */ virtual const char* GetName() { return "ADD_LIBRARY";} @@ -72,6 +79,9 @@ public: } cmTypeMacro(cmAddLibraryCommand, cmCommand); + +private: + std::string m_LibName; }; |