Subversion Repositories gelsvn

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

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