Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] How do I add CDT Nature and Managed Build to an existing project?

If you see plugin.xml for managedbuildr.core plugin, you could find there an extension:

   <extension
         id="configurationDataProvider"
         name="%BuildSystem.name"
         point="org.eclipse.cdt.core.CConfigurationDataProvider">
         <provider
             natures="org.eclipse.cdt.managedbuilder.core.managedBuildNature;org.eclipse.cdt.managedbuilder.core.ScannerConfigNature"
             conflictingNatures="org.eclipse.cdt.make.core.makeNature;org.eclipse.cdt.make.core.ScannerConfigNature"
             class="org.eclipse.cdt.managedbuilder.internal.dataprovider.ConfigurationDataProvider"
         />
   </extension>

CDT removes from MBS project  any nature from this list. If you add one of them (I tried to add makeNature), it lives there some time but will be removed automatically before long :-)

Hope it helps,

Alex


Doowon Kim wrote:

I tried to add CDT nature and ManagedBuild to an already exstring project like this way(http://cdt-devel-faq.wikidot.com/#toc25). But It didn't work. Do you have any other ideas? (CDT 5.0)


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


Back to the top