mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
We can now build both the CLI and GUI binaries!
This commit is contained in:
14
extras/build.py
Normal file
14
extras/build.py
Normal file
@@ -0,0 +1,14 @@
|
||||
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
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user