Look for VCExpress as a possible build tool as well as devenv.

This commit is contained in:
Bill Hoffman 2011-06-23 15:29:25 -04:00
parent ed0075bdb7
commit 8555c2b4b7
1 changed files with 2 additions and 1 deletions

View File

@ -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);