1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-01 20:08:26 +00:00
trezor-firmware/core/site_scons/ui/common.py

19 lines
554 B
Python
Raw Normal View History

from __future__ import annotations
def add_font(
font_name: str,
font: str | None,
defines: list[str | tuple[str, str]],
sources: list[str],
) -> None:
if font is not None:
font_filename = font.replace("_upper", "").lower()
defines += [
(f"TREZOR_FONT_{font_name}_ENABLE", font),
(f"TREZOR_FONT_{font_name}_INCLUDE", f'"{font_filename}.h"'),
]
sourcefile = "embed/gfx/fonts/" + font_filename + ".c"
if sourcefile not in sources:
sources.append(sourcefile)