I need to build a resource DLL from a supplied rc file. Here's what I did upto Delphi 2007:
library ResourceTest;
{$R '..\..\src\Media\TestBitmaps.res' '..\..\src\Media\TestBitmaps.rc'}
{$R *.res}
begin
end.
Compiling this project would create the res file from the rc file and link it in the final DLL. In Delphi 2009 it doesn't work anymore. It says the res file cannot be found. Can anyone suggest an alternative method as simple as the above?