summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.cxx
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-08-28 20:19:01 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-08-28 20:19:01 (GMT)
commitc3b42e90ed4e4f98b1a055c9e62dc67aeb19e6f2 (patch)
treed8c0a78266cd9dbfea66f65d89d97553a4dd193f /Source/cmLocalGenerator.cxx
parent172821eb3810645857b5e8d9dff13f59612334dc (diff)
downloadCMake-c3b42e90ed4e4f98b1a055c9e62dc67aeb19e6f2.zip
CMake-c3b42e90ed4e4f98b1a055c9e62dc67aeb19e6f2.tar.gz
CMake-c3b42e90ed4e4f98b1a055c9e62dc67aeb19e6f2.tar.bz2
ENH: add flag so a terminating slash for the link path can be specified (needed by the Digital Mars D compiler)
Alex
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r--Source/cmLocalGenerator.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index 87b34a1..7857072 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -1531,6 +1531,8 @@ void cmLocalGenerator::OutputLinkLibraries(std::ostream& fout,
}
std::string libPathFlag =
this->Makefile->GetRequiredDefinition("CMAKE_LIBRARY_PATH_FLAG");
+ std::string libPathTerminator =
+ this->Makefile->GetSafeDefinition("CMAKE_LIBRARY_PATH_TERMINATOR");
std::string libLinkFlag =
this->Makefile->GetSafeDefinition("CMAKE_LINK_LIBRARY_FLAG");
// collect all the flags needed for linking libraries
@@ -1599,6 +1601,7 @@ void cmLocalGenerator::OutputLinkLibraries(std::ostream& fout,
{
linkLibs += libPathFlag;
linkLibs += fullLibPath;
+ linkLibs += libPathTerminator;
linkLibs += " ";
// Put this directory in the rpath if using build-tree rpath