Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] RE: Changing the project types

Adding nature is not enough. To make full managed project you also have to set toolchain and some other stuff. You can check code of conversion wizard to see how it
does it.

Kaestel-Baumgartner Harald (DCC/EDF2) wrote:
In my application i am having the project with simple nature. But at the runtime i want to change my simple project to cdt project and also i want to use all the cdt support for my project. Is this possible in eclipse?


AFAIK for a managed project you can simply call org.eclipse.cdt.managedbuilder.core.ManagedCProjectNature.addManagedNature(IProject project, IProgressMonitor monitor) throws CoreException

For StandardProjects the call could be

  void org.eclipse.cdt.core.CProjectNature.addCNature(IProject project, IProgressMonitor mon) throws CoreException


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


Back to the top