LoginSignup
21
19

More than 5 years have passed since last update.

goで作るexeファイルにアイコンを埋め込んでみる (Windows)

Last updated at Posted at 2014-06-28

参考サイト

やってみた

go get github.com/akavel/rsrc
cd %GOPATH%/src/github.com/akavel/rsrc
go build
copy rsrc.exe %HOME%\bin\.

cd (自分のソースディレクトリ)
rsrc -ico nyagos.ico -o nyagos.syso

作成された「nyagos.syso」は、組み込まれる go ソースのあるのと同じフォルダに置いておけば「go build」で自動的に組み込まれるとある。

注意すべきこと

go build だと組み込まれるが、go build nyagos.go など、具体的なソース名を引数に指定してしまうとアウトらしい。

余談

アイコンは DotWorkというツールで作りました。

21
19
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
21
19