diff options
author | Sylvain Joubert <joubert.sy@gmail.com> | 2014-09-20 20:37:52 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-09-22 12:44:39 (GMT) |
commit | 6120fca8e229da08fae1d58017962491fb6e03f3 (patch) | |
tree | f71558713915872ba651144123dc4927cf0df928 /Source | |
parent | 3689c43a8c62ca5883d776ee75a34f145d03ab7a (diff) | |
download | CMake-6120fca8e229da08fae1d58017962491fb6e03f3.zip CMake-6120fca8e229da08fae1d58017962491fb6e03f3.tar.gz CMake-6120fca8e229da08fae1d58017962491fb6e03f3.tar.bz2 |
Ninja: Prevent compilers to be silently modified
Unlike with Unix Makefiles generator modifying compiler paths was not
protected with Ninja generator. It was possible to modify them in the
cache without the expected effect on the generated solution. Also
activate corresponding tests with Ninja.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGlobalNinjaGenerator.cxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/cmGlobalNinjaGenerator.cxx b/Source/cmGlobalNinjaGenerator.cxx index 09ee128..50e1abb 100644 --- a/Source/cmGlobalNinjaGenerator.cxx +++ b/Source/cmGlobalNinjaGenerator.cxx @@ -540,6 +540,15 @@ void cmGlobalNinjaGenerator cmSystemTools::Error("The Ninja generator does not support Fortran yet."); } this->cmGlobalGenerator::EnableLanguage(langs, makefile, optional); + for(std::vector<std::string>::const_iterator l = langs.begin(); + l != langs.end(); ++l) + { + if(*l == "NONE") + { + continue; + } + this->ResolveLanguageCompiler(*l, makefile, optional); + } } bool cmGlobalNinjaGenerator::UsingMinGW = false; |