mirror of https://gitlab.com/basile.b/dexed.git
remove dub option dependencyCheck and replace with skipRegistry
This commit is contained in:
parent
250b6960d8
commit
99557fed58
|
@ -1,5 +1,6 @@
|
||||||
# v3.9.16-dev
|
# v3.9.16-dev
|
||||||
|
|
||||||
|
- DUB projects, options, removed _dependencyCheck_ and replaced with a new _skipRegistry_ option that maps 1:1 to the official documentation.
|
||||||
- editor, option _textCompletionMinLength_ min length off-by-one.
|
- editor, option _textCompletionMinLength_ min length off-by-one.
|
||||||
|
|
||||||
# v3.9.15
|
# v3.9.15
|
||||||
|
|
|
@ -12,7 +12,7 @@ This category exposes the DUB options that are passed to the build tool each tim
|
||||||
- **autoSelectTestConfig**: When not checked the configuration used to test with DUB must be selected before executing the action _Test project_.
|
- **autoSelectTestConfig**: When not checked the configuration used to test with DUB must be selected before executing the action _Test project_.
|
||||||
- **combined**: If checked, tries to build the whole project in a single compiler run.
|
- **combined**: If checked, tries to build the whole project in a single compiler run.
|
||||||
- **compiler**: Selects [which compiler](options_compilers_paths.html) is used by DUB when a project is compiled. Note that the DUB scripts don't use this setting, instead the same preference set for the [runnable modules](features_runnables#options) is used.
|
- **compiler**: Selects [which compiler](options_compilers_paths.html) is used by DUB when a project is compiled. Note that the DUB scripts don't use this setting, instead the same preference set for the [runnable modules](features_runnables#options) is used.
|
||||||
- **dependenciesCheck**: Defines how DUB checks the project dependencies, typically used to avoid too much network operations.
|
- **skipRegistry**: Defines the sources that are not checked when a dependency is missing. Use _all_ for full offline.
|
||||||
- **forceRebuild**: Forces a full recompilation, even if DUB determines that this would not be necessary.
|
- **forceRebuild**: Forces a full recompilation, even if DUB determines that this would not be necessary.
|
||||||
- **linkMode**: Specifies the way the compiler and linker are invoked.
|
- **linkMode**: Specifies the way the compiler and linker are invoked.
|
||||||
- **other**: Displays a list that can be filled with more switches. One item per line.
|
- **other**: Displays a list that can be filled with more switches. One item per line.
|
||||||
|
|
|
@ -16,6 +16,8 @@ type
|
||||||
|
|
||||||
TDubDependencyCheck = (dcStandard, dcOffline, dcNo);
|
TDubDependencyCheck = (dcStandard, dcOffline, dcNo);
|
||||||
|
|
||||||
|
TDubSkipRegistry = (none, standard, configured, all);
|
||||||
|
|
||||||
TDubVerbosity = (default, quiet, verbose, veryVerbose, onlyWarnAndError, onlyError);
|
TDubVerbosity = (default, quiet, verbose, veryVerbose, onlyWarnAndError, onlyError);
|
||||||
|
|
||||||
TDubArchOverride = (auto, x86, x86_64);
|
TDubArchOverride = (auto, x86, x86_64);
|
||||||
|
@ -62,6 +64,7 @@ type
|
||||||
fLinkMode: TDubLinkMode;
|
fLinkMode: TDubLinkMode;
|
||||||
fCombined: boolean;
|
fCombined: boolean;
|
||||||
fDepCheck: TDubDependencyCheck;
|
fDepCheck: TDubDependencyCheck;
|
||||||
|
fSkipRegistry: TDubSkipRegistry;
|
||||||
fVerbosity: TDubVerbosity;
|
fVerbosity: TDubVerbosity;
|
||||||
fArchOverride: TDubArchOverride;
|
fArchOverride: TDubArchOverride;
|
||||||
fOther: string;
|
fOther: string;
|
||||||
|
@ -80,11 +83,12 @@ type
|
||||||
property linkMode: TDubLinkMode read fLinkMode write setLinkMode;
|
property linkMode: TDubLinkMode read fLinkMode write setLinkMode;
|
||||||
property combined: boolean read fCombined write fCombined;
|
property combined: boolean read fCombined write fCombined;
|
||||||
property other: string read fOther write fOther;
|
property other: string read fOther write fOther;
|
||||||
property dependenciesCheck: TDubDependencyCheck read fDepCheck write fDepCheck;
|
property dependenciesCheck: TDubDependencyCheck write fDepCheck; deprecated;
|
||||||
property verbosity: TDubVerbosity read fVerbosity write fVerbosity default default;
|
property verbosity: TDubVerbosity read fVerbosity write fVerbosity default default;
|
||||||
property archOverride: TDubArchOverride read fArchOverride write fArchOverride default auto;
|
property archOverride: TDubArchOverride read fArchOverride write fArchOverride default auto;
|
||||||
property autoFetch: boolean read fAutoFetch write fAutoFetch default false;
|
property autoFetch: boolean read fAutoFetch write fAutoFetch default false;
|
||||||
property autoSelectTestConfig: boolean read fAutoSelectTestConfig write fAutoSelectTestConfig default true;
|
property autoSelectTestConfig: boolean read fAutoSelectTestConfig write fAutoSelectTestConfig default true;
|
||||||
|
property skipRegistry: TDubSkipRegistry read fSkipRegistry write fSkipRegistry default none;
|
||||||
public
|
public
|
||||||
procedure assign(source: TPersistent); override;
|
procedure assign(source: TPersistent); override;
|
||||||
procedure getOpts(options: TStrings);
|
procedure getOpts(options: TStrings);
|
||||||
|
@ -572,19 +576,19 @@ begin
|
||||||
combined:=opts.combined;
|
combined:=opts.combined;
|
||||||
linkMode:=opts.linkMode;
|
linkMode:=opts.linkMode;
|
||||||
other:=opts.other;
|
other:=opts.other;
|
||||||
dependenciesCheck:=opts.dependenciesCheck;
|
|
||||||
compiler:=opts.compiler;
|
compiler:=opts.compiler;
|
||||||
verbosity:=opts.verbosity;
|
verbosity:=opts.verbosity;
|
||||||
archOverride:=opts.archOverride;
|
archOverride:=opts.archOverride;
|
||||||
autoFetch:=opts.autoFetch;
|
autoFetch:=opts.autoFetch;
|
||||||
fAutoSelectTestConfig:=opts.fAutoSelectTestConfig;
|
fAutoSelectTestConfig:=opts.fAutoSelectTestConfig;
|
||||||
|
skipRegistry:=opts.skipRegistry;
|
||||||
end
|
end
|
||||||
else inherited;
|
else inherited;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TDubBuildOptionsBase.getOpts(options: TStrings);
|
procedure TDubBuildOptionsBase.getOpts(options: TStrings);
|
||||||
const
|
const
|
||||||
vb: array[TDubVerbosity] of string = (
|
vb: array [TDubVerbosity] of string = (
|
||||||
'', //auto,
|
'', //auto,
|
||||||
'--vquiet', //quiet,
|
'--vquiet', //quiet,
|
||||||
'-v', //verbose,
|
'-v', //verbose,
|
||||||
|
@ -596,6 +600,12 @@ const
|
||||||
'--arch=x86',
|
'--arch=x86',
|
||||||
'--arch=x86_64'
|
'--arch=x86_64'
|
||||||
);
|
);
|
||||||
|
sr: array [TDubSkipRegistry] of string = (
|
||||||
|
'--skip-registry=none',
|
||||||
|
'--skip-registry=standard',
|
||||||
|
'--skip-registry=configured',
|
||||||
|
'--skip-registry=all'
|
||||||
|
);
|
||||||
begin
|
begin
|
||||||
if parallel then
|
if parallel then
|
||||||
options.Add('--parallel');
|
options.Add('--parallel');
|
||||||
|
@ -607,10 +617,8 @@ begin
|
||||||
dlmAllAtOnce: options.Add('--build-mode=allAtOnce');
|
dlmAllAtOnce: options.Add('--build-mode=allAtOnce');
|
||||||
dlmSingleFile: options.Add('--build-mode=singleFile');
|
dlmSingleFile: options.Add('--build-mode=singleFile');
|
||||||
end;
|
end;
|
||||||
case dependenciesCheck of
|
if fSkipRegistry <> TDubSkipRegistry.none then
|
||||||
dcNo: options.Add('--skip-registry=all');
|
options.Add(sr[fSkipRegistry]);
|
||||||
dcOffline: options.Add('--skip-registry=standard');
|
|
||||||
end;
|
|
||||||
if fVerbosity <> TDubVerbosity.default then
|
if fVerbosity <> TDubVerbosity.default then
|
||||||
options.Add(vb[fVerbosity]);
|
options.Add(vb[fVerbosity]);
|
||||||
if fArchOverride <> TDubArchOverride.auto then
|
if fArchOverride <> TDubArchOverride.auto then
|
||||||
|
|
Loading…
Reference in New Issue