mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
15 lines
303 B
Python
15 lines
303 B
Python
from build.utils import objectify
|
|
from build.c import clibrary
|
|
|
|
icons = ["fluxfile", "hardware", "icon", "imagefile"]
|
|
|
|
clibrary(
|
|
name="icons",
|
|
hdrs={
|
|
f"icons/{n}.h": objectify(
|
|
name=n + "_h", src=f"./{n}.png", symbol=f"icon_{n}_png"
|
|
)
|
|
for n in icons
|
|
},
|
|
)
|