The managed build object model describes project-types, configurations, tool-chains, etc. for the managed build system.
Represents a class of project which acts as a template for the projects that the user will create, for example, a Linux static library. A project type contains a sequence of configurations. Project types are arranged in an inheritance hierarchy where a project type inherits the list of configurations from it's parent and can add to or override configurations in this list.
Used by the build model to uniquely identify the project type.
A human-readable project type name, such as 'Executable'. This will be the name the user sees displayed in the UI.
The id of a projectType that this projectType is derived from.
An optional field that flags a project type as abstract. If true, the project type will not appear in the UI. The project type is used by other project types as their "superclass".
A semi-colon separated list of child IDs of the superclass' children that should not be automatically inherited by this element. Note: This attribute is not yet implemented.
An optional field that flags a project type as test-only. If true, the project type will not appear in the UI. The project type can be manipulated programmatically in JUnit tests, for example.
The project element is an instance of a projectType element. It appears in the .cdtbuild file, not in an extension definition.
The name of the project that the user sees displayed in the UI. This is the name that the user entered in the New Project wizard.
The id of the projectType that this project is an instance of.
A configuration is used to gather together certain default tools and options to build project a certain way. For example, a "Debug" configuration might supply tools with the options set to build with debugging symbols, whereas a "Release" configuration would supply tools with options set to create the best performance.
Unique identifier for the configuration.
A descriptive name for the configuration to be used in the UI.
The configuration that this configuration was cloned from.
This is the name of the final build artifact associated with the configuration. The user will specify this is the UI, so there is no need to supply a default value.
This is the extension that will be applied (if necessary) to any build artifact created by the configuration.
This attribute maintains the command that removes the intermediate and output files for a particular configuration. For example, on POSIX platforms like Linuc, Solaris, or Cygwin, the command would be <code>rm -rf</code> whereas on Win32 platforms it would be <code>del /F /S /Q</code>
Specifies the default list of error parsers used by the configuration. This attribute overrides the error parsers specified in the toolChain element. It is an ordered, semi-colon separated list of parser IDs. The order specifies the order in which the error parsers are invoked during a build.
A tool-integrator-defined, ordered set of tools that tranform the project's resources into the project's outputs. A tool-chain can be defined as part of a configuration, or as an independent specification that is referenced from a separate configuration via the tool-chain superClass attribute.
Unique identifier for the tool-chain.
A descriptive name for the tool-chain to be used in the UI.
The id of a toolChain that this toolChain is derived from.
An optional field that flags a tool-chain as abstract. An abstract tool-chain must be defined as a top level object in the model definition and cannot be selected by the user in the UI, but tool-chains derived from this tool-chain will inherit its attributes and children. The default is false.
A semi-colon separated list of child IDs of the superclass' children that should not be automatically inherited by this element. Note: This attribute is not yet implemented.
This field lists the host operating systems on which the tool-chain runs and is used by the managed build system to decide when the tool-chain is applicable. The value should be a comma-separated list. Current values are "win32", "linux", "solaris", "hpux", "aix" or "any".
This field lists the host architectures on which the tool-chain runs and is used by the managed build system to decide when the tool-chain is applicable. The value should be a comma-separated list. Current values are "win32", "linux", "solaris", "hpux", "aix" or "any".
Specifies the default list of error parsers used by the tool-chain. Error parsers specified by child tool elements are added to this list. It is an ordered, semi-colon separated list of parser IDs. The order specifies the order in which the error parsers are invoked during a build.
Specifies a class that implements the <code>IManagedScannerInfoCollector</code> for gathering the built-in compiler settings for a toolchain.
A place to store build attributes of individual resources that are different from the configuration as a whole.
The path of the project resource to which this element applies.
Specifies whether the resource is excluded from building in the parent configuration. The default is false.
Defines a tool used in the build process.
A unique identifier for the tool that will be used by the build model.
Human-readable name for the tool to be used in the UI.
The id of a tool that this tool is derived from.
An optional field that flags a tool as abstract. An abstract tool must be defined as a top level object in the model definition and cannot be selected by the user in the UI, but tools derived from this tool will inherit its attributes and children. The default is false.
A semi-colon separated list of child IDs of the superclass' children that should not be automatically inherited by this element. Note: This attribute is not yet implemented.
A comma-separated list of file extensions that the tool will produce output for.
A comma-separated list of file extensions that are used for header files. Since many other files depend on the interfaces defined in header files, the build system needs to be able to determine that a header file has changed to properly rebuild its dependents.
The extension that the tool will produce from a given input.
An optional flag for tools that allow users to specify a name for the artifact of the tool. For example, the GCC compiler and linker tools typically allow the user to specify the name of the output with the '-o' flag, whereas the archiver that creates libraries does not.
Some tools produce files with a special prefix that must be specified. For example, a librarian on POSIX systems expects the output to be lib<target>.a, so 'lib' would be the prefix.
Filter the display (and use) of the tool by the nature of the project. Selecting a value of 'cnature' insures that the tool will be displayed IFF there is a cnature associated with the project. A ccnature will filter this tool out. If 'ccnature' is selected, the tool will only be available for C++ projects. If 'both' is selected, the tool will be displayed when either nature is present. This attribute is required if it is not inherited from its superClass.
The command that invokes the tool. For example, gcc for the Gnu C compiler, or g++ for the Gnu C++ compiler.
Specifies the command "pattern" that indicates how the parts of the command line are used to create the entire command line. The pattern consists of the replaceable variables command, flags, outputFlag, output, and inputs. The default pattern is ${command} ${flags} ${outputflag}${output} ${inputs} White space and other characters are significant and are copied to the generated command.
Specifies the name of the class that implements IManagedCommandLineGenerator (TBS).
This is an optional field that specifies the class that provides the source file dependency calculation for a given tool. You can replace the default calculator with a class that implements the <code>IManagedDependencyGenerator</code> interface.
Specifies the default list of error parsers used by the tool. Error parsers specified by the tool are added to this list specified by the tool-chain when a project resource is defined to use the tool. It is automatically removed when there are no more project resources using the tool. It is an ordered, semi-colon separated list of parser IDs. The order specifies the order in which the error parsers are invoked during a build.
An optional, but useful, mechanism for grouping options together.
Used by the build model to uniquely identify the option category.
A human-readable category name, such as 'Preprocessor Options'. This will be the name the user sees displayed in the UI.
Option categories can belong to a tool or be nested inside other option categories. This is the ID of the owner of the category.
An option is associated with a tool. Options can contain boolean values, a simple text string, a selection from an enumerated list, or a list of values. Options also map the value they contain to a command-line flag, such as '-g' in the case of debugging symbol information for compilers.
A unique identifier for the option.
A descriptive name for the option.
The id of an option that this option is derived from.
An optional field that flags an option as abstract. An abstract option must be defined as a top level object in the model definition and cannot be selected by the user in the UI, but options derived from this option will inherit its attributes and children. The default is false.
A semi-colon separated list of child IDs of the superclass' children that should not be automatically inherited by this element. Note: This attribute is not yet implemented.
This is the id of the option category for this option. The id can be the id of the tool which is also a category.
Filter the display (and use) of the option by the type of the resource (currently Project or File). The value 'project' causes the option to be used when applied to a project. The value 'file' causes the option to be used when applied to a file. If 'all' is selected, the option applies to all types of resources. The default is "all".
General options can be one of the following types; 'string' for catch-all entries for options that cannot be easily defined any other way, 'string list' for entries that consist of a list of values such as defined symbols or paths, 'boolean' for options that have two values, and 'enumerated' for options that are one-of a list of values.
Additional special types exist to flag options of special relevance to the build model; 'include', 'libs', 'userObjs' and 'definedSymbols'. You can pre-populate with optionValues, and they will display in the UI the same way the 'stringList' options do. The build model will look specifically for these value types when clients query for include paths and preprocessor defines. The makefile generator will treat the libs and userObjs entries differently than other stringLists.
This value is used for list (and related) options only. If you need a list option to prompt the user to browse for a file or directory when adding a new value, set the value of the attribute accordingly. By default the value is treated as no browsing needed.
Specifies the value assigned to the option by the end user or in a default configuration. For boolean values, specify truth using the string 'true'. All other strings will be treated as false.
Specifies the default value for the option if the 'value' attribute is blank. For enumerated options the optionEnums will be searched for the default. For string list options, all defined optionValues will be treated as defaults. For boolean values, specify truth using the string 'true'. All other strings will be treated as false.
An optional value that specifies the actual command that will be passed to the tool on the command line. The attribute value provides a "pattern" for specifying where the option "value" should be placed for options of type string and stringlist. If no ${value} is specified in the command, the option value is appended to the end of the specified command.
An optional value, used only with options of type Boolean, that specifies the actual command that will be passed to the tool on the command line when the value of the Boolean option is False.
This field is unused in 2.0
Specifies a "tip" that can be displayed in hover help or on the property page. Not implemented in 2.0.
Defines a single value of an enumerated option.
Unique identifier for the option enumeration.
A descriptive name for the enumeration.
Flags this enumerated value as the default to apply to the option if the user has not changed the setting.
The command that the enumerated value translates to on the command line.
A value for defining individual elements of a list option.
The contents of the list item.
This attribute flags the list value as a built-in value as opposed to something the user has entered. Built-ins will not be passed to clients that generate command lines (like the makefile generator). However, clients that need to take these settings into account (like the indexing service), will receive these settings. These values will appear grey in the UI.
Represents the utility that drives the build process (typically, but not necessarily, a variant of "make").
A unique identifier for the builder that will be used by the build model.
Human-readable name for the builder to be used in the UI.
The id of a builder that this builder is derived from.
An optional field that flags a builder as abstract. An abstract builder must be defined as a top level object in the model definition and cannot be selected by the user in the UI, but builders derived from this builder will inherit its attributes and children. The default is false.
A semi-colon separated list of child IDs of the superclass' children that should not be automatically inherited by this element. Note: This attribute is not yet implemented.
Specifies the default command to start the build utility for your toolchain. If the user changes this through the UI, the overriden value will be stored in the project build file. The build model will default to this value if the user ever resets a change.
Specifies the additional, default arguments that will be passed to the build utility when it is called by the builder. If the user changes the flags through the UI, the overriden value will be stored in the project build settings file. The build model will default to this value if the user ever resets a change.
Allows you to supply a custom build file generator that conforms to the <code>IManagedBuilderMakefileGenerator</code> interface.
Specifies the default list of error parsers used by the builder. These error parsers are added to this list specified by the parent tool-chain. It is an ordered, semi-colon separated list of parser IDs. The order specifies the order in which the error parsers are invoked during a build.
Represents the os/architecture combination(s) upon which the outputs of a tool-chain can be deployed.
A unique identifier for the target platform that will be used by the build model.
Human-readable name for the target platform to be used in the UI.
The id of a target platform that this target platform is derived from.
An optional field that flags a target platform as abstract. An abstract target platform must be defined as a top level object in the model definition and cannot be selected by the user in the UI, but target platforms derived from this targetPlatform will inherit its attributes and children. The default is false.
A semi-colon separated list of child IDs of the superclass' children that should not be automatically inherited by this element. Note: This attribute is not yet implemented.
This field lists the target operating systems on which the outputs of a tool-chain runs. The value should be a comma-separated list. Current values are "win32", "linux", "solaris", "hpux", "aix" or "any".
This field lists the target architectures on which the outputs of a tool-chain runs. The value should be a comma-separated list. Current values are "win32", "linux", "solaris", "hpux", "aix" or "any".
Set this to the ID of the binary parser for the output format of your configuration. Currently there are only 2 choices: org.eclipse.cdt.core.ELF for *nix executable artifacts, and "org.eclipse.cdt.core.PE" for artifacts that build for Windows, like Cygwin.
An optional element that allows a tool implementor to supply a class that creates one or more dynamic toolchain elements. For example, the class might create a new tool reference based on the contents of a special file, and a new target that uses that reference.
The class that implements the <code>IManagedConfigElementProvider</code> interface. The logic of determining the elements is left to the implementer, but they must be correctly formed or the build model will have trouble loading.
A meaningful name for the type of element being provided.
<p>
Version identifier for the managed build extension point. It is a string representation, consisting of three (3) tokens separated by a decimal point. The 3 tokens are positive integer numbers. For example, the following are valid version identifiers:
<ul>
<li><code>0.0.0</code></li>
<li><code>1.0.1234</code></li>
<li><code>1.9</code> (interpreted as <code>1.9.0</code>)</li>
<li><code>3</code> (interpreted as <code>3.0.0</code>)</li>
</ul>
</p>
The actual string containing the three version tokens.
This extension point was added in CDT 2.1
The following is an example of the extension point usage:
<p>
<pre>
<extension
id="buildExample"
name="Definitions for Build Example"
point="org.eclipse.cdt.managedbuilder.core.buildDefinitions">
etc...
</pre>
[Enter API information here.]
An implementation of this extension point is supplied in <samp>org.eclipse.cdt.ui</samp>
Copyright (c) 2003, 2004 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available on the <a href="http://www.eclipse.org/legal/cpl-v10.html"> Eclipse</a> website.