parent
bd8664d429
commit
e1ee60f91c
|
|
@ -431,7 +431,13 @@ type t_compile_config=class(tdcreateform)
|
|||
r += f_b_a_param(d,"output");
|
||||
|
||||
if d["strong"] then r+= " -strong";
|
||||
if d["buildgui"] then r+= " -buildgui";
|
||||
if d["buildgui"] then r+= " -buildgui";
|
||||
{$ifdef linux}
|
||||
{$else}
|
||||
if r[length(r)]="\n" then
|
||||
r +=format('--manifest="%s" ',d["buildfile"]+".manifest");
|
||||
else r +=format('\r\n--manifest="%s" ',d["buildfile"]+".manifest");
|
||||
{$endif}
|
||||
return r;
|
||||
end
|
||||
function f_b_a_param(d,n);
|
||||
|
|
|
|||
|
|
@ -5318,7 +5318,11 @@ type TEditerEchoWnd=class(TSynMemoNorm) //
|
|||
r += f_b_a_param(d,"output");
|
||||
|
||||
if d["strong"] then r+= " -strong";
|
||||
if d["buildgui"] then r+= " -buildgui";
|
||||
if d["buildgui"] then r+= " -buildgui";
|
||||
{$ifdef linux}
|
||||
{$else}
|
||||
r +=format(' --manifest="%s" ',d["buildfile"]+".manifest");
|
||||
{$endif}
|
||||
return r;
|
||||
end
|
||||
function f_b_a_param(d,n);
|
||||
|
|
|
|||
Loading…
Reference in New Issue