Provides capabilities to build workspace projects.
A simple example of its use is:
loadModule("/System/Build"); build("MyProject", FULL_BUILD);to trigger a full build of the project "MyProject".
Constant | Description |
---|---|
CLEAN_BUILD | Build kind constant indicating a clean build request (15) |
FULL_BUILD | Build kind constant indicating a full build request (6) |
INCREMENTAL_BUILD | Build kind constant indicating an incremental build request (10). |
Method | Description |
---|---|
build() | Builds a project with the given name and build kind. |
void build(String projectName, [int buildKind])
Builds a project with the given name and build kind.