summaryrefslogtreecommitdiffstats
path: root/Source/cmNinjaTargetGenerator.cxx
diff options
context:
space:
mode:
authorPeter Kümmel <syntheticpp@gmx.net>2013-11-25 08:03:01 (GMT)
committerPeter Kümmel <syntheticpp@gmx.net>2013-11-25 08:08:40 (GMT)
commit76a88888bc80b05b05fc04a188f277d7671933b4 (patch)
tree7ae69232c1d9446fe444931c43b98af14b5b4f98 /Source/cmNinjaTargetGenerator.cxx
parentac2acd22dd98172af52034e59db9d1652033dd37 (diff)
downloadCMake-76a88888bc80b05b05fc04a188f277d7671933b4.zip
CMake-76a88888bc80b05b05fc04a188f277d7671933b4.tar.gz
CMake-76a88888bc80b05b05fc04a188f277d7671933b4.tar.bz2
Ninja: deptype msvc for Intel's compiler on Windows
Diffstat (limited to 'Source/cmNinjaTargetGenerator.cxx')
-rw-r--r--Source/cmNinjaTargetGenerator.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/cmNinjaTargetGenerator.cxx b/Source/cmNinjaTargetGenerator.cxx
index 26eadbe..e7e0a1d 100644
--- a/Source/cmNinjaTargetGenerator.cxx
+++ b/Source/cmNinjaTargetGenerator.cxx
@@ -360,10 +360,11 @@ cmNinjaTargetGenerator
cmMakefile* mf = this->GetMakefile();
- const bool usingMSVC = std::string("MSVC") ==
- (mf->GetDefinition("CMAKE_C_COMPILER_ID") ?
- mf->GetSafeDefinition("CMAKE_C_COMPILER_ID") :
- mf->GetSafeDefinition("CMAKE_CXX_COMPILER_ID"));
+ const std::string cId = mf->GetDefinition("CMAKE_C_COMPILER_ID")
+ ? mf->GetSafeDefinition("CMAKE_C_COMPILER_ID")
+ : mf->GetSafeDefinition("CMAKE_CXX_COMPILER_ID");
+
+ const bool usingMSVC = (cId == "MSVC" || cId == "Intel");
// Tell ninja dependency format so all deps can be loaded into a database
std::string deptype;