diff options
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 6141f50..c6292ce 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -179,7 +179,8 @@ cmake::cmake() this->AddDefaultGenerators(); this->AddDefaultExtraGenerators(); - this->AddDefaultCommands(); + this->AddScriptingCommands(); + this->AddProjectCommands(); // Make sure we can capture the build tool output. cmSystemTools::EnableVSConsoleOutput(); @@ -1654,9 +1655,18 @@ const char* cmake::GetCacheDefinition(const std::string& name) const return this->State->GetInitializedCacheValue(name); } -void cmake::AddDefaultCommands() +void cmake::AddScriptingCommands() { - std::vector<cmCommand*> const commands = GetPredefinedCommands(); + std::vector<cmCommand*> const commands = GetScriptingCommands(); + for (std::vector<cmCommand*>::const_iterator i = commands.begin(); + i != commands.end(); ++i) { + this->State->AddCommand(*i); + } +} + +void cmake::AddProjectCommands() +{ + std::vector<cmCommand*> const commands = GetProjectCommands(); for (std::vector<cmCommand*>::const_iterator i = commands.begin(); i != commands.end(); ++i) { this->State->AddCommand(*i); |