diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2001-05-24 18:59:09 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2001-05-24 18:59:09 (GMT) |
commit | a2a40b125918797471919f526edea2990e29bc69 (patch) | |
tree | 6714eea1dc357bd5a8395fb0bbb146d0507c58b3 /Source/cmVTKWrapTclCommand.h | |
parent | ffd7cfd7c3482531fe8f7469685ff5a0c19e2b68 (diff) | |
download | CMake-a2a40b125918797471919f526edea2990e29bc69.zip CMake-a2a40b125918797471919f526edea2990e29bc69.tar.gz CMake-a2a40b125918797471919f526edea2990e29bc69.tar.bz2 |
updated to handle Tk commands compiled/linked separately. Useful for VTK Tk widgets for example.
Diffstat (limited to 'Source/cmVTKWrapTclCommand.h')
-rw-r--r-- | Source/cmVTKWrapTclCommand.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmVTKWrapTclCommand.h b/Source/cmVTKWrapTclCommand.h index a13025a..2e9da6e 100644 --- a/Source/cmVTKWrapTclCommand.h +++ b/Source/cmVTKWrapTclCommand.h @@ -5,7 +5,7 @@ #include "cmCommand.h" /** \class cmVTKWrapTclCommand - * \brief Define a command that searches for an include file. + * \brief Create Tcl Wrappers for VTK classes. * * cmVTKWrapTclCommand is used to define a CMake variable include * path location by specifying a file and list of directories. @@ -61,7 +61,7 @@ public: virtual const char* GetFullDocumentation() { return - "VTK_WRAP_TCL(resultingLibraryName SourceListName SourceLists ...)"; + "VTK_WRAP_TCL(resultingLibraryName [SOURCES] SourceListName SourceLists ... [COMMANDS CommandName1 CommandName2 ...])"; } /** @@ -76,6 +76,7 @@ private: std::vector<std::string> m_WrapHeaders; std::string m_LibraryName; std::string m_SourceList; + std::vector<std::string> m_Commands; }; |