summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalXCodeGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2009-02-18 17:09:20 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2009-02-18 17:09:20 (GMT)
commitf535cf99edf10841c62d501898c6138470435992 (patch)
tree01e7cd6f2cb0ae68abf57239a2844206c254ce5a /Source/cmGlobalXCodeGenerator.cxx
parente266c377305d7a319ca16ce44330e6c23aaaea27 (diff)
downloadCMake-f535cf99edf10841c62d501898c6138470435992.zip
CMake-f535cf99edf10841c62d501898c6138470435992.tar.gz
CMake-f535cf99edf10841c62d501898c6138470435992.tar.bz2
BUG: use the top level project name for the xcode depend helper directory names
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 6e6a2d7..01bdfc6 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -2698,7 +2698,8 @@ cmGlobalXCodeGenerator::CreateXCodeDependHackTarget(
{
std::string universal = t->GetDirectory();
universal += "/";
- universal += this->CurrentMakefile->GetProjectName();
+ universal +=
+ this->LocalGenerators[0]->GetMakefile()->GetProjectName();
universal += ".build/";
universal += configName;
universal += "/";