Difference between revisions of "Setting an executable icon"

From HaskellWiki
Jump to navigation Jump to search
(Initial page)
(No difference)

Revision as of 23:13, 7 November 2014

This article is a stub. You can help by expanding it.


Introduction

Many operating systems display icons for executables in their file manager windows. The following shows how to add icons to

executables compiled from Haskell source. The examples use the haskell.org favicon (File:Favicon.ico).


Windows

  • Save the favicon as favicon.ico in the directory of your application
  • Create the file Icon.rc, with the contents:

     1 ICON "favicon.ico"

  • generate an object file with the command:

     windres -i Icon.rc Resource.o

  • Compile your Haskell program with a command like:

     ghc Nop.hs Resource.o


Linux

A description how to do this in Ubuntu: Create desktop icon executable on Ubuntu Linux