mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-08 15:19:51 -05:00
Look for VCExpress as a possible build tool as well as devenv.
This commit is contained in:
@@ -123,7 +123,8 @@ std::string cmGlobalVisualStudio10Generator
|
||||
cmSystemTools::LowerCase(lowerCaseCommand);
|
||||
|
||||
// If makeProgram is devenv, parent class knows how to generate command:
|
||||
if (lowerCaseCommand.find("devenv") != std::string::npos)
|
||||
if (lowerCaseCommand.find("devenv") != std::string::npos ||
|
||||
lowerCaseCommand.find("VCExpress") != std::string::npos)
|
||||
{
|
||||
return cmGlobalVisualStudio7Generator::GenerateBuildCommand(makeProgram,
|
||||
projectName, additionalOptions, targetName, config, ignoreErrors, fast);
|
||||
|
||||
Reference in New Issue
Block a user