summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-02-26 23:00:49 (GMT)
committerBrad King <brad.king@kitware.com>2001-02-26 23:00:49 (GMT)
commitb908149828f060186cb9c240e505b865ad31494f (patch)
tree5987dad0bed3478fb5377a6aa0bf59cc34fe999c /Source/cmCommands.cxx
parent8859bd5ac835c639622e169192cbc571d90a3f4c (diff)
downloadCMake-b908149828f060186cb9c240e505b865ad31494f.zip
CMake-b908149828f060186cb9c240e505b865ad31494f.tar.gz
CMake-b908149828f060186cb9c240e505b865ad31494f.tar.bz2
ENH: Added CABIL commands for configuration file generation.
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r--Source/cmCommands.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx
index 5049d5c..a2e6c5a 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -24,6 +24,10 @@
#include "cmWin32DefinesCommand.cxx"
#include "cmWin32LibrariesCommand.cxx"
#include "cmConfigureFileNoAutoconf.cxx"
+#include "cmCabilCommand.cxx"
+#include "cmCabilData.cxx"
+#include "cmCabilDefineSetCommand.cxx"
+#include "cmCabilInstantiateCommand.cxx"
#include "cmFindFileCommand.cxx"
#include "cmWrapTclCommand.cxx"
@@ -50,6 +54,8 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmWin32DefinesCommand);
commands.push_back(new cmWin32LibrariesCommand);
commands.push_back(new cmConfigureFileNoAutoconf);
+ commands.push_back(new cmCabilDefineSetCommand);
+ commands.push_back(new cmCabilInstantiateCommand);
commands.push_back(new cmFindFileCommand);
commands.push_back(new cmWrapTclCommand);
}