diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-28 23:07:27 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-28 23:07:27 (GMT) |
commit | e7bb895afda0ccc5711906873040459942137dce (patch) | |
tree | 571e06a2919cb2922ca46ab0f64f5e969efe0ab5 /Source/cmNMakeMakefileGenerator.cxx | |
parent | b29e3f11cbdfa0dffb40eb394468b448066762e6 (diff) | |
download | CMake-e7bb895afda0ccc5711906873040459942137dce.zip CMake-e7bb895afda0ccc5711906873040459942137dce.tar.gz CMake-e7bb895afda0ccc5711906873040459942137dce.tar.bz2 |
ENH: borland generator 2 is working more or less
Diffstat (limited to 'Source/cmNMakeMakefileGenerator.cxx')
-rw-r--r-- | Source/cmNMakeMakefileGenerator.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmNMakeMakefileGenerator.cxx b/Source/cmNMakeMakefileGenerator.cxx index 3ac21c1..bab4406 100644 --- a/Source/cmNMakeMakefileGenerator.cxx +++ b/Source/cmNMakeMakefileGenerator.cxx @@ -482,6 +482,7 @@ void cmNMakeMakefileGenerator::OutputLinkLibraries(std::ostream& fout, if(emitted.insert(libpath).second) { linkLibs += m_LibraryPathOption; + cmSystemTools::ConvertToWindowsSlashes(libpath); linkLibs += libpath; linkLibs += " "; } @@ -514,6 +515,7 @@ void cmNMakeMakefileGenerator::OutputLinkLibraries(std::ostream& fout, } else { + librariesLinked += m_LibraryLinkOption; librariesLinked += lib->first; librariesLinked += ".lib "; } |