Class TCastleProjectLocalSettings

Unit

Declaration

type TCastleProjectLocalSettings = class(TCastleComponent)

Description

Local (user/machine-specific) project settings.

Source: files/tools/castleinternalprojectlocalsettings.pas (line 30).

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 ).

Source: files/tools/castleinternalprojectlocalsettings.pas (line 43).

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

Default target, used only if UsePlatformDefaults is True.

Source: files/tools/castleinternalprojectlocalsettings.pas (line 47).

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

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

Source: files/tools/castleinternalprojectlocalsettings.pas (line 52).

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

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

Source: files/tools/castleinternalprojectlocalsettings.pas (line 57).


Generated by PasDoc 0.17.0.snapshot.