Переглянути джерело

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

Bill Hoffman 14 роки тому
батько
коміт
8555c2b4b7
1 змінених файлів з 2 додано та 1 видалено
  1. 2 1
      Source/cmGlobalVisualStudio10Generator.cxx

+ 2 - 1
Source/cmGlobalVisualStudio10Generator.cxx

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