diff options
author | Brad King <brad.king@kitware.com> | 2001-02-27 21:28:56 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-02-27 21:28:56 (GMT) |
commit | 711c652edbc47e123a22878e39a4944b31e4708e (patch) | |
tree | 771e17e651b09144265b41fae290aa779dfa7d82 /Source/cmCableCommand.h | |
parent | 41d198ed40fcae8cbd2fae163af48d3c518c9628 (diff) | |
download | CMake-711c652edbc47e123a22878e39a4944b31e4708e.zip CMake-711c652edbc47e123a22878e39a4944b31e4708e.tar.gz CMake-711c652edbc47e123a22878e39a4944b31e4708e.tar.bz2 |
ENH: Implemented automatic tag generation for CABIL_DEFINE_SET command. Added tag output to WriteConfiguration methods. Added CABIL_INSTANTIATE_CLASS command to generate explicit class template instantiation configuration output.
Diffstat (limited to 'Source/cmCableCommand.h')
-rw-r--r-- | Source/cmCableCommand.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Source/cmCableCommand.h b/Source/cmCableCommand.h index b00c199..211b70e 100644 --- a/Source/cmCableCommand.h +++ b/Source/cmCableCommand.h @@ -21,7 +21,15 @@ #include "cmCabilData.h" /** \class cmCabilCommand - * \brief Superclass for all CABIL_ command classes. + * \brief Superclass for all cmCabil command classes. + * + * cmCabilCommand is the superclass for all CABIL-related commands. + * The C++ Automated Bindings for Interpreted Languages (CABIL, + * pronounced "sawbill") tool is configured using an XML input file. + * The input format is quite flexible, but XML is hard for humans to + * write by hand. The CABIL commands in CMake are designed to simplify + * the interface with only a small loss in functionality. These commands + * can be used to automatically generate CABIL configuration files. */ class cmCabilCommand : public cmCommand { |