diff --git a/TSL.exe b/TSL.exe index 8500e63..3c7eb91 100644 Binary files a/TSL.exe and b/TSL.exe differ diff --git a/designer/ctl_mgr/t_compile_config.tsf b/designer/ctl_mgr/t_compile_config.tsf index 2e38b54..25f7620 100644 --- a/designer/ctl_mgr/t_compile_config.tsf +++ b/designer/ctl_mgr/t_compile_config.tsf @@ -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); diff --git a/designer/utslcodeeditor.tsf b/designer/utslcodeeditor.tsf index a41fa8b..a01da1a 100644 --- a/designer/utslcodeeditor.tsf +++ b/designer/utslcodeeditor.tsf @@ -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);