Jonathan wrote:
> I'm trying to compile my app with an icon I created.

        Here's what I do in my Makefile for VS7.

        I have an app called 'irush', so I have an irush.ico file.

        I do the following at build time as commands in the Makefile
        for the link stage:

# Create a text rc file
echo 0 ICON "../icons.windows/irush.ico" > irush.rc

# Compile the text irush.rc file -> irush.res
rc -r irush.rc

# Link the objs and irush.res
$(CC) irush.obj [..other objs..] irush.res [..libs..]

        This has been working for me for years.


_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to