summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r--Source/cmGlobalGenerator.cxx22
1 files changed, 0 insertions, 22 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index bb0d152..5158cf0 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -491,12 +491,6 @@ void cmGlobalGenerator::ClearEnabledLanguages()
void cmGlobalGenerator::Configure()
{
- // Setup the current output directory components for use by
- // ConvertToRelativePath.
- std::string outdir =
- cmSystemTools::CollapseFullPath(m_CMakeInstance->GetHomeOutputDirectory());
- cmSystemTools::SplitPath(outdir.c_str(), m_HomeOutputDirectoryComponents);
-
// Delete any existing cmLocalGenerators
unsigned int i;
for (i = 0; i < m_LocalGenerators.size(); ++i)
@@ -1094,19 +1088,3 @@ void cmGlobalGenerator::SetupTests()
}
}
}
-
-
-//----------------------------------------------------------------------------
-std::string cmGlobalGenerator::ConvertToHomeRelativePath(const char* remote)
-{
- return (this->ConvertToRelativePath(m_HomeOutputDirectoryComponents,remote));
-}
-
-//----------------------------------------------------------------------------
-std::string
-cmGlobalGenerator::ConvertToHomeRelativeOutputPath(const char* remote)
-{
- return cmSystemTools::ConvertToOutputPath
- (this->ConvertToRelativePath(m_HomeOutputDirectoryComponents,remote).c_str());
-}
-