summaryrefslogtreecommitdiff
path: root/Source/cmCommands.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2005-01-21 10:27:51 -0500
committerBill Hoffman <bill.hoffman@kitware.com>2005-01-21 10:27:51 -0500
commita641ad3bba58932279b55bae9e05fb9d5277a0bf (patch)
tree66cfe0c4df46da607404c531178fdd1c07d1b6ba /Source/cmCommands.h
parent1bfb3194ec849ccfef6078d78cecc761f0c8377b (diff)
downloadcmake-a641ad3bba58932279b55bae9e05fb9d5277a0bf.tar.gz
ENH: split up cmCommands into two files
Diffstat (limited to 'Source/cmCommands.h')
-rw-r--r--Source/cmCommands.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmCommands.h b/Source/cmCommands.h
index 5ec0ed134d..878ded3f64 100644
--- a/Source/cmCommands.h
+++ b/Source/cmCommands.h
@@ -21,10 +21,12 @@
class cmCommand;
/**
* Global function to return all compiled in commands.
- * To add a new command edit cmCommands.cxx and add your command.
+ * To add a new command edit cmCommands.cxx or cmBootstrapCommands.cxx
+ * and add your command.
* It is up to the caller to delete the commands created by this
* call.
*/
+void GetBootstrapCommands(std::list<cmCommand*>& commands);
void GetPredefinedCommands(std::list<cmCommand*>& commands);