Subversion Repositories gelsvn

Rev

Rev 107 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 107 Rev 259
1
package EM3ProjectCreator;
1
package EM3ProjectCreator;
2
 
2
 
3
# ************************************************************
3
# ************************************************************
4
# Description   : An eMbedded Visual C++ 3.00 Project Creator
4
# Description   : An eMbedded Visual C++ 3.00 Project Creator
5
# Author        : Chad Elliott
5
# Author        : Chad Elliott
6
# Create Date   : 7/3/2002
6
# Create Date   : 7/3/2002
7
# ************************************************************
7
# ************************************************************
8
 
8
 
9
# ************************************************************
9
# ************************************************************
10
# Pragmas
10
# Pragmas
11
# ************************************************************
11
# ************************************************************
12
 
12
 
13
use strict;
13
use strict;
14
 
14
 
15
use VC6ProjectCreator;
15
use VC6ProjectCreator;
16
 
16
 
17
use vars qw(@ISA);
17
use vars qw(@ISA);
18
@ISA = qw(VC6ProjectCreator);
18
@ISA = qw(VC6ProjectCreator);
19
 
19
 
20
# ************************************************************
20
# ************************************************************
21
# Subroutine Section
21
# Subroutine Section
22
# ************************************************************
22
# ************************************************************
23
 
23
 
24
sub project_file_extension {
24
sub project_file_extension {
25
  #my($self) = shift;
25
  #my($self) = shift;
26
  return '.vcp';
26
  return '.vcp';
27
}
27
}
28
 
28
 
29
 
29
 
30
sub get_dll_exe_template_input_file {
30
sub get_dll_exe_template_input_file {
31
  #my($self) = shift;
31
  #my($self) = shift;
32
  return 'em3vcpdllexe';
32
  return 'em3vcpdllexe';
33
}
33
}
34
 
34
 
35
 
35
 
36
sub get_lib_exe_template_input_file {
36
sub get_lib_exe_template_input_file {
37
  #my($self) = shift;
37
  #my($self) = shift;
38
  return 'em3vcplibexe';
38
  return 'em3vcplibexe';
39
}
39
}
40
 
40
 
41
 
41
 
42
sub get_lib_template_input_file {
42
sub get_lib_template_input_file {
43
  #my($self) = shift;
43
  #my($self) = shift;
44
  return 'em3vcplib';
44
  return 'em3vcplib';
45
}
45
}
46
 
46
 
47
 
47
 
48
sub get_dll_template_input_file {
48
sub get_dll_template_input_file {
49
  #my($self) = shift;
49
  #my($self) = shift;
50
  return 'em3vcpdll';
50
  return 'em3vcpdll';
51
}
51
}
52
 
52
 
53
 
53
 
54
1;
54
1;
55
 
55