diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2017-01-20 21:12:32 (GMT) |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2017-02-13 21:32:55 (GMT) |
commit | 72dcbbe5c017a4c071187259f9594ccf02f7b466 (patch) | |
tree | 1cd77bbfcdf4a2e65a2829a6df9292f755a18cb3 /Source/cmCommands.h | |
parent | 7fb14775a3cce73dc0cb0d759b96059a95f7104b (diff) | |
download | CMake-72dcbbe5c017a4c071187259f9594ccf02f7b466.zip CMake-72dcbbe5c017a4c071187259f9594ccf02f7b466.tar.gz CMake-72dcbbe5c017a4c071187259f9594ccf02f7b466.tar.bz2 |
split Default commands into Scripting and Project
Diffstat (limited to 'Source/cmCommands.h')
-rw-r--r-- | Source/cmCommands.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmCommands.h b/Source/cmCommands.h index 649dea6..4d09e42 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 |