diff options
author | Brad King <brad.king@kitware.com> | 2014-03-04 18:20:04 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-03-04 18:41:59 (GMT) |
commit | 5e8e4d0f8819052d3a69eb3cb1a4bdbc674a956c (patch) | |
tree | 2c99d980644ce3ea2f328fb104011378cca5542d /Source/cmMakefileTargetGenerator.cxx | |
parent | b9aa5041989a415a360e61291142e760ae7eb9e1 (diff) | |
download | CMake-5e8e4d0f8819052d3a69eb3cb1a4bdbc674a956c.zip CMake-5e8e4d0f8819052d3a69eb3cb1a4bdbc674a956c.tar.gz CMake-5e8e4d0f8819052d3a69eb3cb1a4bdbc674a956c.tar.bz2 |
cmLocalGenerator: Add response file option to OutputLinkLibraries
Response files require different path conversion to be threaded
through construction of the link libraries flags.
Diffstat (limited to 'Source/cmMakefileTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileTargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx index e5b163b..0f2b6e3 100644 --- a/Source/cmMakefileTargetGenerator.cxx +++ b/Source/cmMakefileTargetGenerator.cxx @@ -1840,7 +1840,7 @@ cmMakefileTargetGenerator std::string linkPath; this->LocalGenerator ->OutputLinkLibraries(linkLibs, frameworkPath, linkPath, - *this->GeneratorTarget, relink); + *this->GeneratorTarget, relink, false); linkLibs = frameworkPath + linkPath + linkLibs; } |