Unit 'fpmkunit' Package
[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] [#fcl]

TCheckDependencyResult

Result codes for dependency availability checking

Declaration

Source position: fpmkunit.pp line 210

type TCheckDependencyResult = (

  cdAvailable,

  

Dependency is available and can be used

  cdNotAvailable,

  

Dependency is not available and cannot be found

  cdNotYetAvailable

  

Dependency is not yet available but may become available later

);

Description

TCheckDependencyResult indicates the status of dependency availability checks.

Used to determine whether required dependencies are available for compilation.

cdAvailable
indicates that the required dependency is present in the system and can be used for compilation. This result allows the build process to proceed.
cdNotAvailable
indicates that the required dependency cannot be found in the system and is not available for use. This result prevents the build process from proceeding due to missing dependencies.
cdNotYetAvailable
indicates that the dependency is not currently available but will become available after other dependencies are built or installed

Documentation generated on: Dec 15 2025