Try building a Windows manifest.

This commit is contained in:
David Given
2023-10-27 21:38:44 +02:00
parent 5af0b68e06
commit 0dbce00fe4
5 changed files with 48 additions and 1 deletions

View File

@@ -32,3 +32,13 @@ normalrule(
commands=["iconutil -c icns -o {outs[0]} {ins[0]}"],
label="ICONUTIL",
)
normalrule(
name="fluxengine_ico",
ins=["./icon.png"],
outs=["fluxengine.ico"],
commands=[
"convert {ins[0]} -resize 64x46 -define icon:auto-resize=64,48,32,16 {outs[0]}"
],
label="MAKEICON",
)