TBuildMode
Build execution modes for package compilation
Declaration
Source position: fpmkunit.pp line 207
type TBuildMode = ( |
bmOneByOne, |
|
Build targets one by one sequentially |
bmBuildUnit |
|
Use a build unit |
); |
Description
TBuildMode specifies how the build process should execute package compilation:
- bmOneByOne
- specifies that build targets should be compiled sequentially, one after another. This mode relies on proper dependency specification.
- bmBuildUnit
- specifies that individual Pascal units should not be compiled separately. Rather they are compiled as part of a larger unit compilation: the build unit.
See also
Report a problem on this page