Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] Providing new project types for CDT 3.1

This is still supported.

I suspect that your problem is that you are making modifications to your
existing plugin without incrementing its version number.   As a result,
when Eclipse starts up it doesn't reparse your plugin, because it is trying
to optimize which plugins it parses.  It sees your version number hasn't
changed so it assumes the content is the same and doesn't parse it.  Try
running Eclipse with the -clean command line option and see if that solves
it.

===========================

Chris Recoskie
Team Lead, IBM CDT Team
IBM Toronto
http://www.eclipse.org/cdt



                                                                           
             John Dallaway                                                 
             <jld@ecoscentric.                                             
             com>                                                       To 
             Sent by:                  cdt-dev@xxxxxxxxxxx                 
             cdt-dev-bounces@e                                          cc 
             clipse.org                                                    
                                                                   Subject 
                                       [cdt-dev] Providing new project     
             22/06/2006 11:22          types for CDT 3.1                   
             AM                                                            
                                                                           
                                                                           
             Please respond to                                             
               "CDT General                                                
             developers list."                                             
             <cdt-dev@eclipse.                                             
                   org>                                                    
                                                                           
                                                                           




With CDT 3.0 I was able to define project types in addition to the
standard ones by providing an XML extension in a separate plug-in:

> <plugin class="org.eclipse.cdt.managedbuilder.gnu.ui.GnuUIPlugin" ... >
> <extension point="org.eclipse.cdt.managedbuilder.core.buildDefinitions"
... >
> <projectType name="My Project Type" ... >
> ...

I am attempting to do something similar with CDT 3.1 RC3 but my
additional project type definitions are not being presented in the user
interface. Have I missed something?

John Dallaway
_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/cdt-dev




Back to the top