mirror of https://github.com/icedream/icecon.git
Fix linker issues on different Windows architectures.
parent
4011bce29b
commit
26bd990227
|
@ -2,6 +2,7 @@
|
||||||
*.o
|
*.o
|
||||||
*.a
|
*.a
|
||||||
*.so
|
*.so
|
||||||
|
*.syso
|
||||||
|
|
||||||
# Folders
|
# Folders
|
||||||
_obj
|
_obj
|
||||||
|
|
Binary file not shown.
|
@ -1,5 +1,5 @@
|
||||||
//+build windows
|
// +build windows,386
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
//go:generate goversioninfo -manifest "rsrc/app.manifest" -icon "rsrc/app.ico" -o "rsrc_windows.syso"
|
//go:generate goversioninfo -manifest "rsrc/app.manifest" -icon "rsrc/app.ico" -o "rsrc_windows.syso" -arch 386
|
|
@ -0,0 +1,5 @@
|
||||||
|
// +build windows,amd64
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
//go:generate goversioninfo -manifest "rsrc/app.manifest" -icon "rsrc/app.ico" -o "rsrc_windows.syso" -arch amd64
|
Loading…
Reference in New Issue