summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-02-20 00:28:53 (GMT)
committerBrad King <brad.king@kitware.com>2006-02-20 00:28:53 (GMT)
commitc21287552bd262a60c38e495b75c91888882e681 (patch)
tree62bb4118b8072fcbf4a0707d6d461f207e0134cc /Source/cmTarget.cxx
parent518080136d2b643b2b27ae1ef69cee28306c2f81 (diff)
downloadCMake-c21287552bd262a60c38e495b75c91888882e681.zip
CMake-c21287552bd262a60c38e495b75c91888882e681.tar.gz
CMake-c21287552bd262a60c38e495b75c91888882e681.tar.bz2
ENH: Switched order of slash and configuration name in cmGlobalGenerator::AppendDirectoryForConfig method to increase flexibility.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r--Source/cmTarget.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index 4238a53..52becb9 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -1064,13 +1064,13 @@ std::string cmTarget::GetFullPath(const char* config, bool implib)
{
// Start with the output directory for the target.
std::string fpath = this->GetDirectory();
+ 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, implib);
return fpath;
}