Re: [Lazarus] Project.pp

2024-04-09 Thread Flávio Etrusco via lazarus
Hi, delete the offending units from the uses clause then report back the missing classes or functions. The LazIDEIntf unit doesn't exist anymore and has been refactored into other units. Regards, Flávio Em qua., 3 de abr. de 2024 às 10:14, Gabriele Cappelletto via lazarus <

Re: [Lazarus] Project.pp

2024-04-09 Thread Martin Frb via lazarus
On 09/04/2024 19:39, Gabriele Cappelletto via lazarus wrote: Done, I'm missing this, I can't find how to do this in the handbook BMOptions: TBuildMatrixOption;   BMOptions := TProject(AProject).BuildModes.SharedMatrixOptions.Add(bmotIDEMacro);   BMOptions.Modes := 'Default';  

Re: [Lazarus] Project.pp

2024-04-09 Thread Gabriele Cappelletto via lazarus
Anyway, thank you for responding to me. Now it is just projectintf I just miss the little problem of the previous email, but it can be done by hand as well. Il 09/04/24 18:48, Martin Frb ha scritto: On 03/04/2024 16:41, Gabriele Cappelletto via lazarus wrote:

Re: [Lazarus] Project.pp

2024-04-09 Thread Gabriele Cappelletto via lazarus
Done, I'm missing this, I can't find how to do this in the handbook BMOptions: TBuildMatrixOption;   BMOptions := TProject(AProject).BuildModes.SharedMatrixOptions.Add(bmotIDEMacro);   BMOptions.Modes := 'Default';   BMOptions.MacroName := 'LCLWidgetType';   BMOptions.Value := 'nogui';  I

Re: [Lazarus] Project.pp

2024-04-09 Thread Martin Frb via lazarus
On 03/04/2024 16:41, Gabriele Cappelletto via lazarus wrote: TProject(AProject).UseAppBundle := False; Package BuildIntf components\buildintf\projectintf.pas => LGPL with linking exception TLazProject(AProject).UseAppBundle := False; TProject(AProject).ProjResources.XPManifest.UseManifest

Re: [Lazarus] Project.pp

2024-04-09 Thread Martin Frb via lazarus
On 09/04/2024 17:45, Gabriele Cappelletto wrote: It is not meant to work. That is the unit "project" is part of the IDE, and only meant to be used by the IDE. From a license point of few, it is GPL (not LGPL), so if your code is GPL, then you are permitted to use it, but If even the

Re: [Lazarus] Project.pp

2024-04-09 Thread Gabriele Cappelletto via lazarus
If even the code was gpl then there would be no commercial product for lazarus. neither tms nor anything else. Mine is not GPL like that of many others. At least as far as this project is concerned. If I haven't misunderstood, don't write like this if you don't want a general escape from

Re: [Lazarus] Main shows lots of changes in language files after rebuilding

2024-04-09 Thread Christo Crause via lazarus
On Tue, Apr 9, 2024 at 1:42 PM Maxim Ganetsky via lazarus < lazarus@lists.lazarus-ide.org> wrote: > 09.04.2024 08:30, Christo Crause via lazarus пишет: > > I updated the Lazarus main version yesterday. After rebuilding the IDE, > > git shows that the PO files in ide/packages/ideconfig/languages

Re: [Lazarus] Main shows lots of changes in language files after rebuilding

2024-04-09 Thread Maxim Ganetsky via lazarus
09.04.2024 08:30, Christo Crause via lazarus пишет: I updated the Lazarus main version yesterday.  After rebuilding the IDE, git shows that the PO files in ide/packages/ideconfig/languages changed.  If these files are modified by the build process can they be updated in git please.  Or is

Re: [Lazarus] Project.pp

2024-04-09 Thread Gabriele Cappelletto via lazarus
Thanks for replying, I also take note of what you wrote. For now it works Il 03/04/24 19:46, Martin Frb ha scritto: On 03/04/2024 18:49, Gabriele Cappelletto via lazarus wrote: The code is this function TExtPApplicationDescriptor.InitProject(AProject: TLazProject): TModalResult;