summaryrefslogtreecommitdiff
path: root/modules/VCProjectBase.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2009-05-07 15:44:53 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2009-05-07 15:44:53 +0000
commit27d14dd78fd850e1edf88289d5be521333db2fc3 (patch)
tree84a26ca2281bb3c01a9bf662f17154cc4a49e54f /modules/VCProjectBase.pm
parentf385d046c86cfd46a2a13937acaaa863e6c2df38 (diff)
downloadMPC-27d14dd78fd850e1edf88289d5be521333db2fc3.tar.gz
ChangeLogTag: Thu May 7 15:39:17 UTC 2009 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/VCProjectBase.pm')
-rw-r--r--modules/VCProjectBase.pm14
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/VCProjectBase.pm b/modules/VCProjectBase.pm
index 5d5d5191..47786b49 100644
--- a/modules/VCProjectBase.pm
+++ b/modules/VCProjectBase.pm
@@ -44,4 +44,18 @@ sub dependency_is_filename {
}
+sub get_properties {
+ my $self = shift;
+
+ ## Get the base class properties and add the properties that we
+ ## support.
+ my $props = $self->WinProjectBase::get_properties();
+
+ ## All projects that use this base class are for Microsoft compilers.
+ $$props{'microsoft'} = 1;
+
+ return $props;
+}
+
+
1;