1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
package VCProjectBase;
# ************************************************************
# Description : A VC Project base module
# Author : Chad Elliott
# Create Date : 1/4/2005
# ************************************************************
# ************************************************************
# Pragmas
# ************************************************************
use strict;
use VCPropertyBase;
use WinProjectBase;
use vars qw(@ISA);
@ISA = qw(VCPropertyBase WinProjectBase);
# ************************************************************
# Subroutine Section
# ************************************************************
sub compare_output {
#my $self = shift;
return 1;
}
sub require_dependencies {
my $self = shift;
## Only write dependencies for non-static projects
## and static exe projects, unless the user wants the
## dependency combined static library.
return ($self->get_static() == 0 || $self->exe_target() ||
$self->dependency_combined_static_library());
}
sub dependency_is_filename {
#my $self = shift;
return 0;
}
1;
|