mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-19 14:49:29 +02:00
fixed invalidating Target macros
git-svn-id: trunk@4919 -
This commit is contained in:
parent
5ab6c9fc3b
commit
35ccacafe9
@ -1084,18 +1084,21 @@ procedure TBaseCompilerOptions.SetTargetCPU(const AValue: string);
|
||||
begin
|
||||
if fTargetCPU=AValue then exit;
|
||||
fTargetCPU:=AValue;
|
||||
IncreaseCompilerParseStamp;
|
||||
end;
|
||||
|
||||
procedure TBaseCompilerOptions.SetTargetProc(const AValue: Integer);
|
||||
begin
|
||||
if fTargetProc=AValue then exit;
|
||||
fTargetProc:=AValue;
|
||||
IncreaseCompilerParseStamp;
|
||||
end;
|
||||
|
||||
procedure TBaseCompilerOptions.SetTargetOS(const AValue: string);
|
||||
begin
|
||||
if fTargetOS=AValue then exit;
|
||||
fTargetOS:=AValue;
|
||||
IncreaseCompilerParseStamp;
|
||||
end;
|
||||
|
||||
procedure TBaseCompilerOptions.SetBaseDirectory(const AValue: string);
|
||||
|
Loading…
Reference in New Issue
Block a user