summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-02-03 16:36:11 (GMT)
committerBrad King <brad.king@kitware.com>2006-02-03 16:36:11 (GMT)
commitafa83678854b7af547c9f0033ac5f7446a163447 (patch)
tree6696c212b3243e536816708262b800ed188e5d22 /Source/cmTarget.cxx
parent0f5aced5029203a7a833e81f2f36dafcd3c56d99 (diff)
downloadCMake-afa83678854b7af547c9f0033ac5f7446a163447.zip
CMake-afa83678854b7af547c9f0033ac5f7446a163447.tar.gz
CMake-afa83678854b7af547c9f0033ac5f7446a163447.tar.bz2
BUG: Fixed cmTarget::GetFullPath to not append the configuration name when only one configuration is built. It now asks the generator what subdirectory if any to use for a given configuration name.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r--Source/cmTarget.cxx13
1 files changed, 4 insertions, 9 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index c5471b8..58a40b3 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -1054,18 +1054,13 @@ std::string cmTarget::GetFullPath(const char* config)
{
// Start with the output directory for the target.
std::string fpath = this->GetDirectory();
- fpath += "/";
- // Add the configuration's subdirectory. This may need to be replaced with
- // a call into the generator found through m_Makefile so that each
- // generator can map configuration names to output directories its own way.
- if(config)
- {
- fpath += config;
- fpath += "/";
- }
+ // Add the configuration's subdirectory.
+ m_Makefile->GetLocalGenerator()->GetGlobalGenerator()->
+ AppendDirectoryForConfig(config, fpath);
// Add the full name of the target.
+ fpath += "/";
fpath += this->GetFullName(config);
return fpath;
}