Hi
I have an app that has numerous builds for simplicity say Prog1,Prog2,Prog3.
Each of these builds set various defines that customize the executable for a particular usage.
I can change the executable name to be x,y,z in project options for each build mode.
I can give each one its own title and icon in the lpr file.
ie
{$IFDEF Prog1}
Application.Title:='Prog 1';
Application.Icon.LoadFromFile('Icon_prog1.ico');
{$endif}
{$IFDEF Prog2}
Application.Title:='Prog 2';
Application.Icon.LoadFromFile('Icon_prog2.ico');
{$endif}
However what I wish is for each build mode to have its own version number and product name etc, but these seem to be global.
Any thoughts ideas.