fixed invalidating Target macros

git-svn-id: trunk@4919 -
This commit is contained in:
mattias 2003-12-20 12:36:07 +00:00
parent 5ab6c9fc3b
commit 35ccacafe9

View File

@ -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);