summaryrefslogtreecommitdiff
path: root/ACE/MPC/modules/VC9ProjectCreator.pm
blob: fea5ee31fc4f4662c6f63ba198075521ad3d68d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package VC9ProjectCreator;

# ************************************************************
# Description   : A VC9 Project Creator
# Author        : Johnny Willemsen
# Create Date   : 11/22/2007
# ************************************************************

# ************************************************************
# Pragmas
# ************************************************************

use strict;

use VC8ProjectCreator;

use vars qw(@ISA);
@ISA = qw(VC8ProjectCreator);

my %config = ('vcversion' => '9.00',
              'prversion' => '9.0.30729',
              'toolsversion' => '3.5',
              'xmlheader' => 1,
              );

# ************************************************************
# Subroutine Section
# ************************************************************

sub get_configurable {
  my($self, $name) = @_;
  return $config{$name};
}

1;