always compile, when the users chooses compiler, even if nothing has changed (issue #894)

git-svn-id: trunk@8935 -
This commit is contained in:
vincents 2006-03-13 14:33:46 +00:00
parent 30ce5eafe2
commit 60115fa7ed

View File

@ -2380,7 +2380,7 @@ begin
and AnUnitInfo.BuildFileIfActive then
DoBuildFile
else
DoBuildProject(crCompile,[pbfOnlyIfNeeded]);
DoBuildProject(crCompile,[]);
end;
ecBuildAll: DoBuildProject(crBuild,[pbfCleanCompile,
@ -3039,7 +3039,7 @@ end;
Procedure TMainIDE.mnuBuildProjectClicked(Sender: TObject);
Begin
DoBuildProject(crCompile,[pbfOnlyIfNeeded]);
DoBuildProject(crCompile,[]);
end;
Procedure TMainIDE.mnuBuildAllProjectClicked(Sender: TObject);