From 5b0a46e1c93f99c8ba5fadbc3224a3721d95aa64 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 13 Aug 2014 11:50:31 -0400 Subject: ASM_MASM: Do not require compiler to be a full path The compiler detection modules for this language do not yet know how to find the full path to 'ml' or 'ml64', so do not require it. --- Source/cmGlobalGenerator.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 3f948b5..3681515 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -620,7 +620,8 @@ cmGlobalGenerator::EnableLanguage(std::vectorconst& languages, "No " << compilerName << " could be found.\n" ; } - else if(strcmp(lang, "RC") != 0) + else if(strcmp(lang, "RC") != 0 && + strcmp(lang, "ASM_MASM") != 0) { if(!cmSystemTools::FileIsFullPath(compilerFile)) { -- cgit v0.12