Re: [Lazarus] Creating packages - what to include?

2020-12-28 Thread Corpsman via lazarus
ember 2020 um 22:51 Uhr Von: "Bart via lazarus" An: bo.bergl...@gmail.com, "Lazarus mailing list" Cc: "Bart" Betreff: Re: [Lazarus] Creating packages - what to include? On Mon, Dec 28, 2020 at 6:13 PM Bo Berglund via lazarus wrote: > Could you please

Re: [Lazarus] Creating packages - what to include?

2020-12-28 Thread Bart via lazarus
On Mon, Dec 28, 2020 at 6:13 PM Bo Berglund via lazarus wrote: > Could you please direct me to where in Lazarus this can be done? It is in Complier options. It has a checkbox "Set compiler options as default". My folder layout is like: \\LazarusProjecten\ Each application's main lpi resides in

Re: [Lazarus] Creating packages - what to include?

2020-12-28 Thread Jean SUZINEAU via lazarus
Le 28/12/2020 à 18:13, Bo Berglund via lazarus a écrit : Could you please direct me to where in Lazarus this can be done? Usually when I add a unit uA.pas to a project (by opening the unit in the code and then hitting Shift+F11 or Project/Add editor file to project), Lazarus asks me if I

Re: [Lazarus] Creating packages - what to include?

2020-12-28 Thread Bo Berglund via lazarus
On Mon, 28 Dec 2020 18:31:54 +0100, Werner Pamler via lazarus wrote: >You are talking of runtime code only. Here are instructions how to >create a Lazarus runtime package (I never created an FPC package...): Go >to "Package" > "New package", specify name and location of the new >package, an

Re: [Lazarus] Creating packages - what to include?

2020-12-28 Thread Werner Pamler via lazarus
You are talking of runtime code only. Here are instructions how to create a Lazarus runtime package (I never created an FPC package...): Go to "Package" > "New package", specify name and location of the new package, an empty package will be created automatically. In the package editor which

Re: [Lazarus] Creating packages - what to include?

2020-12-28 Thread Bo Berglund via lazarus
On Mon, 28 Dec 2020 16:39:32 +0100, Bart via lazarus wrote: >On Mon, Dec 28, 2020 at 4:24 PM Bo Berglund via lazarus > wrote: > >> >I have created a number of classes that are useful in multiple >> >projects. > >I have all my usefull units in one folder (you can use multiple >folders if so

Re: [Lazarus] Creating packages - what to include?

2020-12-28 Thread Bart via lazarus
On Mon, Dec 28, 2020 at 4:24 PM Bo Berglund via lazarus wrote: > >I have created a number of classes that are useful in multiple > >projects. I have all my usefull units in one folder (you can use multiple folders if so desired). This folder is in the -Fu path of all my projects. This can be

Re: [Lazarus] Creating packages - what to include?

2020-12-28 Thread Bo Berglund via lazarus
On Mon, 28 Dec 2020 16:14:09 +0100, Bo Berglund via lazarus wrote: >I have created a number of classes that are useful in multiple >projects. Originally I have copied the source files between the >projects in order to use the classes, but it has resulted in >differences between the projects

[Lazarus] Creating packages - what to include?

2020-12-28 Thread Bo Berglund via lazarus
I have created a number of classes that are useful in multiple projects. Originally I have copied the source files between the projects in order to use the classes, but it has resulted in differences between the projects regarding the source files when I modify the class. So I am looking for a