When I build a Resource DLL with Radasm,the Linker does not
link the resource file with object file and I do it from Command
Line.What can I do with Project Options of menu Project of
Radasm ?
Thanks,Manos.
Posted on 2002-05-31 10:43:49 by Anonymous
By default a RadASM dll project doesn't link Resources.
You'll need to edit the project options under the menu:
project -> Project options

The Project options dialog box has two sections...
under the section named you must ensure that compile rc is selected...

then change the link command from:



5,O,$B\LINK.EXE /DEBUG /DEBUGTYPE:CV /SUBSYSTEM:WINDOWS /VERSION:4.0 /LIBPATH:$L,3

to


5,O,$B\LINK.EXE /DEBUG /DEBUGTYPE:CV /SUBSYSTEM:WINDOWS /VERSION:4.0 /LIBPATH:$L,3,[B]4[/B]


note: there are two versions to the command line the version above is the debugging version...for the release version do the same i.e add ,4 to the link command
Posted on 2002-05-31 11:08:32 by MArtial_Code
Hello MArtial_Code.
I have accomplish it with your help.
Thanks very mutch,Manos.
Posted on 2002-05-31 12:12:04 by Anonymous