Update pin_base.mpb
[MPC.git] / modules / MakePropertyBase.pm
blob34ffaaf395698a116b90b0603766f04392c0a148
1 package MakePropertyBase;
3 # ************************************************************
4 # Description : A Make property base module
5 # Author : Chad Elliott
6 # Create Date : 3/9/2010
7 # ************************************************************
9 # ************************************************************
10 # Pragmas
11 # ************************************************************
13 use strict;
15 # ************************************************************
16 # Subroutine Section
17 # ************************************************************
19 sub get_properties {
20 my $self = shift;
22 ## Get the base class properties and add the properties that we
23 ## support.
24 my $props = $self->Creator::get_properties();
26 ## All projects that use this base class are 'make' based.
27 $$props{'make'} = 1;
29 return $props;