Thread
:
How-to specify the name of compiled output (*.exe) within C++ code?
View Single Post
xpi0t0s
Mentor
12May2009,20:04
You need to compile it first with a resource compiler (look for rc.exe).
Adding it to the link line is as simple as concatenating the filename to the line, for example suppose you want to add FOO.RES to LINK A.O, you get LINK A.O FOO.RES.