summaryrefslogtreecommitdiffstats
path: root/Source/cmVTKWrapTclCommand.h
diff options
context:
space:
mode:
authorSebastien Barre <sebastien.barre@kitware.com>2001-05-24 18:59:09 (GMT)
committerSebastien Barre <sebastien.barre@kitware.com>2001-05-24 18:59:09 (GMT)
commita2a40b125918797471919f526edea2990e29bc69 (patch)
tree6714eea1dc357bd5a8395fb0bbb146d0507c58b3 /Source/cmVTKWrapTclCommand.h
parentffd7cfd7c3482531fe8f7469685ff5a0c19e2b68 (diff)
downloadCMake-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.h5
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;
};