IDE: project compiler options: disable create Makefile - it is only implemented for packages, bug #15748

git-svn-id: trunk@23771 -
This commit is contained in:
mattias 2010-02-23 20:28:58 +00:00
parent 9727287dbb
commit 86c21a75aa

View File

@ -136,6 +136,7 @@ begin
if Options is TProjectCompilerOptions then
with TProjectCompilerOptions(Options) do
begin
chkCreateMakefile.Enabled:=false;
lblRunIfCompiler.Visible := True;
chkCompilerCompile.AnchorToNeighbour(akLeft, 30, lblRunIfCompiler);
chkCompilerCompile.Checked := crCompile in CompileReasons;
@ -149,6 +150,7 @@ begin
end
else if Options is TPkgCompilerOptions then
begin
chkCreateMakefile.Enabled:=true;
lblRunIfCompiler.Visible := False;
chkCompilerCompile.AnchorParallel(akTop, 6, chkCompilerCompile.Parent);
chkCompilerCompile.AnchorParallel(akLeft, 6, chkCompilerCompile.Parent);