summaryrefslogtreecommitdiff
path: root/Source/cmCommands.h
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2017-01-20 22:12:32 +0100
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2017-02-13 22:32:55 +0100
commit72dcbbe5c017a4c071187259f9594ccf02f7b466 (patch)
tree1cd77bbfcdf4a2e65a2829a6df9292f755a18cb3 /Source/cmCommands.h
parent7fb14775a3cce73dc0cb0d759b96059a95f7104b (diff)
downloadcmake-72dcbbe5c017a4c071187259f9594ccf02f7b466.tar.gz
split Default commands into Scripting and Project
Diffstat (limited to 'Source/cmCommands.h')
-rw-r--r--Source/cmCommands.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmCommands.h b/Source/cmCommands.h
index 649dea6b5b..4d09e423f0 100644
--- a/Source/cmCommands.h
+++ b/Source/cmCommands.h
@@ -13,6 +13,7 @@ class cmCommand;
* To add a new command edit cmCommands.cxx and add your command.
* It is up to the caller to delete the commands created by this call.
*/
-std::vector<cmCommand*> GetPredefinedCommands();
+std::vector<cmCommand*> GetScriptingCommands();
+std::vector<cmCommand*> GetProjectCommands();
#endif