CDT扩展点——org.eclipse.cdt.managedbuilder.core.buildProperties

这个扩展点是用于定义一个Property,它没有什么需要你实现的类,它只是一个名字而已,用在像org.eclipse.cdt.managedbuilder.core.buildDefinitions的扩展点之中。


看看它的英文解释吧。

The build properties extension point is used to specify the property types and their values to be used with the tool definitions. The primary use if the build properties for now is option anablement/adjustment expressions.

上面是原本,但怎么读都觉得后面那几句很不通畅。

The primary use if the build properties for now is option anablement/adjustment expressions.

这一句,我想应该是The primary use of the build properties for now is option enablement/adjustment expressions.

意思是,它现在最基本(最主要)的用处是使得某些表达式有效(或者调整某些表达式的值)。

是这样子的,当你定义一个工具链的时候(toolChain),可能需要指定这个toolChain支持哪些类型的输出文件,如果编译一个ELF格式的类型和编译一个EXE格式类型的toolChain就会不一样,这个时候这个刚刚定义的org.eclipse.cdt.managedbuilder.core.Property就派上用场了,与此同时,projectType中的buildArtefactType也用到相同的Property


你可能感兴趣的:(Eclipse入门)