编辑器

编译加入manifest功能
This commit is contained in:
2023-11-22 12:17:47 +08:00
parent bd8664d429
commit e1ee60f91c
3 changed files with 12 additions and 2 deletions
BIN
View File
Binary file not shown.
+6
View File
@@ -432,6 +432,12 @@ type t_compile_config=class(tdcreateform)
if d["strong"] then r+= " -strong";
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);
+4
View File
@@ -5319,6 +5319,10 @@ type TEditerEchoWnd=class(TSynMemoNorm) //
if d["strong"] then r+= " -strong";
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);