~dynamite-a-d/ubuntu/precise/cmake/fix-for-972419

« back to all changes in this revision

Viewing changes to Source/cmGlobalVisualStudio10Generator.cxx

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-07-11 00:51:46 UTC
  • mfrom: (3.1.24 sid)
  • Revision ID: james.westby@ubuntu.com-20110711005146-v81594j17p4gqjrd
Tags: 2.8.5-1ubuntu1
Disable CTestTestUpload test as it requires internet access.

Show diffs side-by-side

added added

removed removed

Lines of Context:
123
123
  cmSystemTools::LowerCase(lowerCaseCommand);
124
124
 
125
125
  // If makeProgram is devenv, parent class knows how to generate command:
126
 
  if (lowerCaseCommand.find("devenv") != std::string::npos)
 
126
  if (lowerCaseCommand.find("devenv") != std::string::npos ||
 
127
      lowerCaseCommand.find("VCExpress") != std::string::npos)
127
128
    {
128
129
    return cmGlobalVisualStudio7Generator::GenerateBuildCommand(makeProgram,
129
130
      projectName, additionalOptions, targetName, config, ignoreErrors, fast);