Steht das nicht in der '*.RES' Datei drin? Die wird ja im Hauptprogramm eingebunden ('{$R *.res}')
Kannst Du da nicht ansetzen, und per Compilerschalter eintscheiden, welche RES-Datei denn eingebunden werden soll?
Delphi-Quellcode:
program Project1;
uses
Forms,
Unit3 in 'Unit3.pas' {Form3};
{$IFDEF Modus_1}
{$R Project_Version_1.res}
{$ENDIF}
{$IFDEF Modus_2}
{$R Project_Version_2.res}
{$ENDIF}
begin
Application.Initialize;
Application.CreateForm(TForm3, Form3);
Application.Run;
end.
Ungetestet. Probiers aus.