summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx26
1 files changed, 0 insertions, 26 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index a0f813e..e286295 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -199,32 +199,6 @@ void cmake::CleanupCommandsAndMacros()
this->State->RemoveUserDefinedCommands();
}
-bool cmake::CommandExists(const std::string& name) const
-{
- return this->State->GetCommand(name) ? true : false;
-}
-
-cmCommand *cmake::GetCommand(const std::string& name) const
-{
- return this->State->GetCommand(name);
-}
-
-void cmake::RenameCommand(const std::string& oldName,
- const std::string& newName)
-{
- this->State->RenameCommand(oldName, newName);
-}
-
-void cmake::AddCommand(cmCommand* command)
-{
- this->State->AddCommand(command);
-}
-
-void cmake::RemoveUnscriptableCommands()
-{
- this->State->RemoveUnscriptableCommands();
-}
-
// Parse the args
bool cmake::SetCacheArgs(const std::vector<std::string>& args)
{