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 CBXProjectCreator;
1
package CBXProjectCreator;
2
 
2
 
3
# ************************************************************
3
# ************************************************************
4
# Description   : The Borland C++ BuilderX Project Creator
4
# Description   : The Borland C++ BuilderX Project Creator
5
# Author        : Johnny Willemsen
5
# Author        : Johnny Willemsen
6
# Create Date   : 10/12/2003
6
# Create Date   : 10/12/2003
7
# ************************************************************
7
# ************************************************************
8
 
8
 
9
# ************************************************************
9
# ************************************************************
10
# Pragmas
10
# Pragmas
11
# ************************************************************
11
# ************************************************************
12
 
12
 
13
use strict;
13
use strict;
14
 
14
 
15
use ProjectCreator;
15
use ProjectCreator;
16
use WinProjectBase;
16
use WinProjectBase;
17
 
17
 
18
use vars qw(@ISA);
18
use vars qw(@ISA);
19
@ISA = qw(WinProjectBase ProjectCreator);
19
@ISA = qw(WinProjectBase ProjectCreator);
20
 
20
 
21
# ************************************************************
21
# ************************************************************
22
# Subroutine Section
22
# Subroutine Section
23
# ************************************************************
23
# ************************************************************
24
 
24
 
25
sub crlf {
25
sub crlf {
26
  #my($self) = shift;
26
  #my($self) = shift;
27
  return "\n";
27
  return "\n";
28
}
28
}
29
 
29
 
30
 
30
 
31
sub project_file_extension {
31
sub project_file_extension {
32
  #my($self) = shift;
32
  #my($self) = shift;
33
  return '.cbx';
33
  return '.cbx';
34
}
34
}
35
 
35
 
36
 
36
 
37
sub get_dll_exe_template_input_file {
37
sub get_dll_exe_template_input_file {
38
  #my($self) = shift;
38
  #my($self) = shift;
39
  return 'cbxexe';
39
  return 'cbxexe';
40
}
40
}
41
 
41
 
42
 
42
 
43
sub get_dll_template_input_file {
43
sub get_dll_template_input_file {
44
  #my($self) = shift;
44
  #my($self) = shift;
45
  return 'cbxdll';
45
  return 'cbxdll';
46
}
46
}
47
 
47
 
48
 
48
 
49
1;
49
1;
50
 
50