summaryrefslogtreecommitdiff
path: root/ACE/MPC/modules/VC9ProjectCreator.pm
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/MPC/modules/VC9ProjectCreator.pm')
-rw-r--r--ACE/MPC/modules/VC9ProjectCreator.pm35
1 files changed, 35 insertions, 0 deletions
diff --git a/ACE/MPC/modules/VC9ProjectCreator.pm b/ACE/MPC/modules/VC9ProjectCreator.pm
new file mode 100644
index 00000000000..fea5ee31fc4
--- /dev/null
+++ b/ACE/MPC/modules/VC9ProjectCreator.pm
@@ -0,0 +1,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;