1 package CDT7ProjectCreator
;
3 # ************************************************************
4 # Description : A CDT7 Project Creator (Eclipse 3.6)
5 # Author : Adam Mitz, Object Computing, Inc.
6 # Create Date : 10/04/2010
7 # ************************************************************
9 # ************************************************************
11 # ************************************************************
14 use CDT6ProjectCreator
;
17 @ISA = qw(CDT6ProjectCreator);
19 # ************************************************************
21 # ************************************************************
23 my %config = ('scanner_config_builder_triggers' => 'full,incremental,',
24 'additional_storage_modules' =>
25 'org.eclipse.cdt.core.language.mapping ' .
26 'org.eclipse.cdt.internal.ui.text.commentOwnerProjectMappings',
27 'additional_error_parsers' =>
28 'org.eclipse.cdt.core.GmakeErrorParser ' .
29 'org.eclipse.cdt.core.CWDLocator'
32 # ************************************************************
34 # ************************************************************
36 sub get_configurable
{
37 my($self, $name) = @_;
38 return $config{$name};