diff options
author | Brad King <brad.king@kitware.com> | 2017-05-11 14:00:08 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2017-05-11 14:00:12 (GMT) |
commit | 8e2f3582eb9cf75c78fbe8232cdacce2357f7efc (patch) | |
tree | fcac3db79055770efdece88f06f8127b8b500d63 /Source/cmLocalNinjaGenerator.cxx | |
parent | 20c838da6bac1123cba65845f3ea730cd5ca51ab (diff) | |
parent | 53e89b6ab0cae7b9ba0316b3806abd986794a22c (diff) | |
download | CMake-8e2f3582eb9cf75c78fbe8232cdacce2357f7efc.zip CMake-8e2f3582eb9cf75c78fbe8232cdacce2357f7efc.tar.gz CMake-8e2f3582eb9cf75c78fbe8232cdacce2357f7efc.tar.bz2 |
Merge topic 'split-sysroot'
53e89b6a Add options for separate compile and link sysroots
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !819
Diffstat (limited to 'Source/cmLocalNinjaGenerator.cxx')
-rw-r--r-- | Source/cmLocalNinjaGenerator.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmLocalNinjaGenerator.cxx b/Source/cmLocalNinjaGenerator.cxx index 124bd80..fd2b803 100644 --- a/Source/cmLocalNinjaGenerator.cxx +++ b/Source/cmLocalNinjaGenerator.cxx @@ -37,8 +37,9 @@ cmLocalNinjaGenerator::cmLocalNinjaGenerator(cmGlobalGenerator* gg, cmRulePlaceholderExpander* cmLocalNinjaGenerator::CreateRulePlaceholderExpander() const { - cmRulePlaceholderExpander* ret = new cmRulePlaceholderExpander( - this->Compilers, this->VariableMappings, this->CompilerSysroot); + cmRulePlaceholderExpander* ret = + new cmRulePlaceholderExpander(this->Compilers, this->VariableMappings, + this->CompilerSysroot, this->LinkerSysroot); ret->SetTargetImpLib("$TARGET_IMPLIB"); return ret; } |