summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalXCodeGenerator.cxx
diff options
context:
space:
mode:
authorBruno Manganelli <bruno.manga95@gmail.com>2018-11-23 01:38:29 (GMT)
committerBruno Manganelli <bruno.manga95@gmail.com>2018-12-07 19:29:30 (GMT)
commit87e810f223bad6fb889e7ae4ad08be98461bf6e2 (patch)
tree07ad1b190e0bfe2240a2e534195973e44426d913 /Source/cmGlobalXCodeGenerator.cxx
parent99a224e3ee0b6a770c388313a7b32746a95514e8 (diff)
downloadCMake-87e810f223bad6fb889e7ae4ad08be98461bf6e2.zip
CMake-87e810f223bad6fb889e7ae4ad08be98461bf6e2.tar.gz
CMake-87e810f223bad6fb889e7ae4ad08be98461bf6e2.tar.bz2
cmOutputConverter: Moved ForceToRelativePath to cmSystem
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index ac4f0be..d6ab769 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -3563,7 +3563,7 @@ std::string cmGlobalXCodeGenerator::RelativeToSource(const char* p)
{
// We force conversion because Xcode breakpoints do not work unless
// they are in a file named relative to the source tree.
- return cmOutputConverter::ForceToRelativePath(
+ return cmSystemTools::ForceToRelativePath(
cmSystemTools::JoinPath(this->ProjectSourceDirectoryComponents), p);
}