Nicht ganz sauber, geht aber auch.
Zwei
DPR's
Code:
[color=blue]{Projectbla.dpr}[/color]
program [color=red]Projectbla[/color];
uses
Forms,
Unit1 in 'Unit1.pas' {Form1};
[color=red]{$R *.res}[/color]
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
Code:
[color=blue]{Projectbla_Debug.dpr - 'ne Kopie der anderen
DPR}[/color]
program [color=red]Projectbla_Debug[/color];
uses
Forms,
Unit1 in 'Unit1.pas' {Form1};
[color=red]{$R Projectbla.res}[/color]
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.