diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-02-19 20:07:31 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-02-19 20:07:31 (GMT) |
commit | 797a7f50a264badce34769d876ed3233296852e0 (patch) | |
tree | 3e365395a90b83bd73edbaf53d98959250f5fd32 /Source | |
parent | 245e7c3482005798a81e1bc6641aaad4ca0a5b71 (diff) | |
download | CMake-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.cxx | 2 |
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 += "/"; |