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
|
package GNUAutobuildProjectCreator;
# ************************************************************
# Description : A Project creator for the GNUAutobuild project type
# Author : Chad Elliott
# Create Date : 3/13/2002
# ************************************************************
# ************************************************************
# Pragmas
# ************************************************************
use strict;
use File::Basename;
use GNUACEProjectCreator;
use MakeProjectBase;
use ProjectCreator;
use vars qw(@ISA);
@ISA = qw(GNUACEProjectCreator MakeProjectBase ProjectCreator);
sub extractType {
return 'gnuace';
}
1;
|