mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 21:00:17 -06:00
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:
@@ -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))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user