summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-02-19 20:07:31 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2007-02-19 20:07:31 (GMT)
commit797a7f50a264badce34769d876ed3233296852e0 (patch)
tree3e365395a90b83bd73edbaf53d98959250f5fd32 /Source
parent245e7c3482005798a81e1bc6641aaad4ca0a5b71 (diff)
downloadCMake-797a7f50a264badce34769d876ed3233296852e0.zip
CMake-797a7f50a264badce34769d876ed3233296852e0.tar.gz
CMake-797a7f50a264badce34769d876ed3233296852e0.tar.bz2
ENH: use project not target name
Diffstat (limited to 'Source')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index f457817..7d9f7dc 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -2574,7 +2574,7 @@ GetTargetObjectFileDirectories(cmTarget* target,
{
std::string dir = this->CurrentMakefile->GetCurrentOutputDirectory();
dir += "/";
- dir += target->GetName();
+ dir += this->CurrentMakefile->GetProjectName();
dir += ".build/";
dir += this->GetCMakeCFGInitDirectory();
dir += "/";