mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-04 15:00:28 +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
|
||||
if HasOption('B','build-all') then
|
||||
BuildAll:=true;
|
||||
if HasOption('r','recursive') then
|
||||
if HasOption('r','recursive') then begin
|
||||
BuildAll:=true;
|
||||
BuildRecursive:=true;
|
||||
end;
|
||||
if HasOption('d','skip-dependencies') then
|
||||
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
|
||||
// widgetset
|
||||
|
Loading…
Reference in New Issue
Block a user