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.
This commit is contained in:
parent
802dbe5239
commit
5b0a46e1c9
|
@ -620,7 +620,8 @@ cmGlobalGenerator::EnableLanguage(std::vector<std::string>const& 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))
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue