Cross compiling with icon (sorry, maybe OT)

Anyone knows how to make the executable created
with cross-compiler having a specified icon?
Has the cross-compiler an option to link an icon
to generated exe file?

Thanks.

Enzo.

SDL_WM_SetIcon();–
Brian

On Wed, 22 Mar 2000, Enzo wrote:

Anyone knows how to make the executable created
with cross-compiler having a specified icon?
Has the cross-compiler an option to link an icon
to generated exe file?

Thanks.

Enzo.

hayward at slothmud.org wrote:

SDL_WM_SetIcon();

Brian

Anyone knows how to make the executable created
with cross-compiler having a specified icon?
Has the cross-compiler an option to link an icon
to generated exe file?

Thanks.

Enzo.

Yes, but with that function the icon is
changed at runtime.
All that I want is to link icon resource
statically into the exe file.> On Wed, 22 Mar 2000, Enzo wrote:

SDL_WM_SetIcon();

That sets the window’s icon when you’re running it.
I think he was asking about th eactual .exe file’s icon…

-bill!

I don’t know how to do it with a cross compiler, but in the windows
world the shareware program Microangelo is supposed to be able to
change icons in existing programs, hey it might even run under wine.

Phoenix Kokido
members.xoom.com/kokido
@Wes_Poole

Enzo wrote:> Anyone knows how to make the executable created

with cross-compiler having a specified icon?
Has the cross-compiler an option to link an icon
to generated exe file?

Thanks.

Enzo.

Grab the DirectX cross-compile source archive from:
http://www.devolution.com/~slouken/SDL/Xmingw32/

Look in the icon subdirectory. Maelstrom uses this mechanism to add
an icon to the executable when being cross-compiled from Linux.

See ya,
-Sam Lantinga (slouken at devolution.com)

Lead Programmer, Loki Entertainment Software–
“Any sufficiently advanced bug is indistinguishable from a feature”
– Rich Kulawiec

Sam Lantinga wrote:

Grab the DirectX cross-compile source archive from:
http://www.devolution.com/~slouken/SDL/Xmingw32/

Look in the icon subdirectory. Maelstrom uses this mechanism to add
an icon to the executable when being cross-compiled from Linux.

Ok, this is what I want !!!
Very good, it worked fine…

Thanks
Enzo.