Make build with the new ab --- but the tests fail.

This commit is contained in:
David Given
2025-03-17 22:33:54 +01:00
parent 0f763fe06b
commit 15a69f6dcb
57 changed files with 220 additions and 148 deletions

View File

@@ -19,8 +19,8 @@ simplerule(
ins=["./icon.png"],
outs=["=fluxengine.iconset"],
commands=[
"mkdir -p {outs[0]}",
"sips -z 64 64 {ins[0]} --out {outs[0]}/icon_32x32@2x.png > /dev/null",
"mkdir -p $[outs[0]]",
"sips -z 64 64 $[ins[0]] --out $[outs[0]]/icon_32x32@2x.png > /dev/null",
],
label="ICONSET",
)
@@ -29,7 +29,7 @@ simplerule(
name="fluxengine_icns",
ins=[".+fluxengine_iconset"],
outs=["=fluxengine.icns"],
commands=["iconutil -c icns -o {outs[0]} {ins[0]}"],
commands=["iconutil -c icns -o $[outs[0]] $[ins[0]]"],
label="ICONUTIL",
)
@@ -37,6 +37,6 @@ simplerule(
name="fluxengine_ico",
ins=["./icon.png"],
outs=["=fluxengine.ico"],
commands=["png2ico {outs[0]} {ins[0]}"],
commands=["png2ico $[outs[0]] $[ins[0]]"],
label="MAKEICON",
)