PlatformAPI.TOTARemotePathType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TOTARemotePathType = (orptInclude, orptLibrary, orptFramework, orptOther);

Properties

Type Visibility Source Unit Parent
enum public PlatformAPI.pas PlatformAPI PlatformAPI

Description

TOTARemotePathType indicates the type of a file or folder within an SDK. This determines how the IDE uses this file or folder when you build an application using the SDK that contains this file or folder.

The following types are supported:

  • orptInclude: The IDE includes the path to this file or folder in the list of includes when it calls the compiler.
  • orptLibrary: The IDE includes the path to this file or folder in the list of libraries when it calls the linker.
  • orptFramework: The IDE includes the path to this file or folder in the list of frameworks when it calls the compiler or linker.
  • orptOther: The IDE does not provide the path to this file or folder to the compiler or linker.

See Also