diff options
Diffstat (limited to 'Source/cmWrapTclCommand.h')
-rw-r--r-- | Source/cmWrapTclCommand.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmWrapTclCommand.h b/Source/cmWrapTclCommand.h index 307911f..9906942 100644 --- a/Source/cmWrapTclCommand.h +++ b/Source/cmWrapTclCommand.h @@ -61,7 +61,7 @@ public: virtual const char* GetFullDocumentation() { return - "WRAP_TCL()"; + "WRAP_TCL(resultingLibraryName SourceListName SourceLists ...)"; } /** @@ -74,6 +74,8 @@ public: private: std::vector<cmClassFile> m_WrapClasses; std::vector<std::string> m_WrapHeaders; + std::string m_LibraryName; + std::string m_SourceList; }; |