how to create and compile reesources for dmd 64

ketmar via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Sun Sep 21 14:41:31 PDT 2014


On Sun, 21 Sep 2014 20:13:41 +0000
Cassio Butrico via Digitalmars-d-learn
<digitalmars-d-learn at puremagic.com> wrote:

> how to compile in mingw-w64 resource compiler?
it tooks the standard text .rc files and produces .res of COFF. smth
like:

=== r.rc ===
  #include "windows.h"
  1024 ICON "icon.ico"

then invoke windres from mingw like:

  windres.exe -i r.rc -o r.res

and it will produre .res file that can be linked with ms linker (if i
remember it right).

take it all with a grain of salt though, i don't have windows and ms
tools to check it.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 181 bytes
Desc: not available
URL: <http://lists.puremagic.com/pipermail/digitalmars-d-learn/attachments/20140922/bc352f22/attachment.sig>


More information about the Digitalmars-d-learn mailing list