Class TCastleProjectLocalSettings

Unit

Declaration

type TCastleProjectLocalSettings = class(TCastleComponent)

Description

Local (user/machine-specific) project settings.

Hierarchy

Overview

Properties

Published property UsePlatformDefaults: Boolean read FUsePlatformDefaults write FUsePlatformDefaults default false;
Published property DefaultTarget: TTarget read FDefaultTarget write FDefaultTarget default targetCustom;
Published property DefaultOS: TOS read FDefaultOS write FDefaultOS default osNone;
Published property DefaultCPU: TCPU read FDefaultCPU write FDefaultCPU default cpuNone;

Description

Properties

Published property UsePlatformDefaults: Boolean read FUsePlatformDefaults write FUsePlatformDefaults default false;

Do you have a preferred default platform to use (compile, run and so on) by the build tool. If this is True, then DefaultTarget, DefaultOS, DefaultCPU are meaningful and they determine the default build tool platform (as if you used –target, –os, –cpu command-line options, see https://castle-engine.io/build_tool ).

Published property DefaultTarget: TTarget read FDefaultTarget write FDefaultTarget default targetCustom;

Default target, used only if UsePlatformDefaults is True.

Published property DefaultOS: TOS read FDefaultOS write FDefaultOS default osNone;

Default OS, used only if UsePlatformDefaults is True and DefaultTarget is targetCustom.

Published property DefaultCPU: TCPU read FDefaultCPU write FDefaultCPU default cpuNone;

Default CPU, used only if UsePlatformDefaults is True and DefaultTarget is targetCustom.


Generated by PasDoc 0.16.0-snapshot.