~ubuntu-branches/ubuntu/precise/cmake/precise-updates

« back to all changes in this revision

Viewing changes to Source/cmGlobalVisualStudio8Generator.cxx

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2012-01-17 23:04:07 UTC
  • mfrom: (1.13.6)
  • Revision ID: package-import@ubuntu.com-20120117230407-14cdb6g0mxmh29bl
Tags: 2.8.7-0ubuntu1
* New upstream release
  - Add increase_ctest_test_timeout.diff to increase timeout period
    of a test

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
///! Create a local generator appropriate to this Global Generator
29
29
cmLocalGenerator *cmGlobalVisualStudio8Generator::CreateLocalGenerator()
30
30
{
31
 
  cmLocalVisualStudio7Generator *lg = new cmLocalVisualStudio7Generator;
32
 
  lg->SetVersion8();
 
31
  cmLocalVisualStudio7Generator *lg =
 
32
    new cmLocalVisualStudio7Generator(cmLocalVisualStudioGenerator::VS8);
33
33
  lg->SetPlatformName(this->GetPlatformName());
34
34
  lg->SetExtraFlagTable(this->GetExtraFlagTableVS8());
35
35
  lg->SetGlobalGenerator(this);