mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-08 12:39:18 +02:00
lazbuild: check --skip-dependencies and --recursive
git-svn-id: trunk@45387 -
This commit is contained in:
parent
fa48bb2715
commit
4a0db5176c
@ -1573,10 +1573,17 @@ begin
|
|||||||
// build all
|
// build all
|
||||||
if HasOption('B','build-all') then
|
if HasOption('B','build-all') then
|
||||||
BuildAll:=true;
|
BuildAll:=true;
|
||||||
if HasOption('r','recursive') then
|
if HasOption('r','recursive') then begin
|
||||||
|
BuildAll:=true;
|
||||||
BuildRecursive:=true;
|
BuildRecursive:=true;
|
||||||
|
end;
|
||||||
if HasOption('d','skip-dependencies') then
|
if HasOption('d','skip-dependencies') then
|
||||||
SkipDependencies:=true;
|
SkipDependencies:=true;
|
||||||
|
if BuildRecursive and SkipDependencies then begin
|
||||||
|
writeln('Error: --recursive and --skip-dependencies. You have to make up your mind.');
|
||||||
|
WriteUsage;
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
|
||||||
// overides
|
// overides
|
||||||
// widgetset
|
// widgetset
|
||||||
|
Loading…
Reference in New Issue
Block a user