summaryrefslogtreecommitdiff
path: root/modules/VC8ProjectCreator.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2005-05-16 16:41:30 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2005-05-16 16:41:30 +0000
commit0ef5e7ad0ee429288fe764a289f1414e9c41a3f8 (patch)
treeca26d7a27add93d0f589cd14e27c15af019f09fe /modules/VC8ProjectCreator.pm
parent987bae628b60ded8ca0aca53d305392642ee0fa3 (diff)
downloadMPC-0ef5e7ad0ee429288fe764a289f1414e9c41a3f8.tar.gz
ChangeLogTag: Mon May 16 11:36:29 2005 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/VC8ProjectCreator.pm')
-rw-r--r--modules/VC8ProjectCreator.pm19
1 files changed, 19 insertions, 0 deletions
diff --git a/modules/VC8ProjectCreator.pm b/modules/VC8ProjectCreator.pm
index c5a2db7b..4d2d636b 100644
--- a/modules/VC8ProjectCreator.pm
+++ b/modules/VC8ProjectCreator.pm
@@ -17,6 +17,15 @@ use VC7ProjectCreator;
use vars qw(@ISA);
@ISA = qw(VC7ProjectCreator);
+my(%info) = ('cplusplus' => {'ext' => '.vcproj',
+ 'dllexe' => 'vc8exe',
+ 'libexe' => 'vc8libexe',
+ 'dll' => 'vc8dll',
+ 'lib' => 'vc8lib',
+ 'template' => 'vc8',
+ },
+ );
+
# ************************************************************
# Subroutine Section
# ************************************************************
@@ -29,4 +38,14 @@ sub get_configurable {
return $config{$name};
}
+sub get_info_hash {
+ my($self) = shift;
+ my($key) = shift;
+
+ if (defined $info{$key}) {
+ return $info{$key};
+ }
+ return $self->SUPER::get_info_hash($key);
+}
+
1;