back to unicode
[MPC.git] / modules / VC9ProjectCreator.pm
blob8a66ba41b9ecc160b9375b337764c52cf56bdb9f
1 package VC9ProjectCreator;
3 # ************************************************************
4 # Description : A VC9 Project Creator
5 # Author : Johnny Willemsen
6 # Create Date : 11/22/2007
7 # ************************************************************
9 # ************************************************************
10 # Pragmas
11 # ************************************************************
13 use strict;
15 use VC8ProjectCreator;
17 use vars qw(@ISA);
18 @ISA = qw(VC8ProjectCreator);
20 my %config = ('vcversion' => '9.00',
21 'prversion' => '9.0.30729',
22 'toolsversion' => '3.5',
23 'targetframeworkversion' => '3.5',
24 'xmlheader' => 1,
27 # ************************************************************
28 # Subroutine Section
29 # ************************************************************
31 sub get_configurable {
32 my($self, $name) = @_;
33 return $config{$name};