summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-06-24 12:37:18 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2013-06-24 12:37:18 (GMT)
commitb1ef36a20abccfe7ada8d54bccc35661e0f541be (patch)
tree712b91e268884cdad5e879c3ec6c6967f0fad780 /Source/cmCommands.h
parent64d14d3ddd83f4a368e3540717aa1c5268ab8525 (diff)
parentb9f4383f698ae9207bb2701f1b82753e239e3248 (diff)
downloadCMake-b1ef36a20abccfe7ada8d54bccc35661e0f541be.zip
CMake-b1ef36a20abccfe7ada8d54bccc35661e0f541be.tar.gz
CMake-b1ef36a20abccfe7ada8d54bccc35661e0f541be.tar.bz2
Merge topic 'split-command-sources'
b9f4383 Split cmBootstrapCommands.cxx into two sources
Diffstat (limited to 'Source/cmCommands.h')
-rw-r--r--Source/cmCommands.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmCommands.h b/Source/cmCommands.h
index 096fc20..c56673f 100644
--- a/Source/cmCommands.h
+++ b/Source/cmCommands.h
@@ -16,12 +16,13 @@
class cmCommand;
/**
* Global function to return all compiled in commands.
- * To add a new command edit cmCommands.cxx or cmBootstrapCommands.cxx
+ * To add a new command edit cmCommands.cxx or cmBootstrapCommands[12].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 GetBootstrapCommands1(std::list<cmCommand*>& commands);
+void GetBootstrapCommands2(std::list<cmCommand*>& commands);
void GetPredefinedCommands(std::list<cmCommand*>& commands);