-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from Habbie/font-b612
use B612 Regular size 14 for logbox
- Loading branch information
Showing
9 changed files
with
39 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,6 +63,20 @@ curl_dep = dependency( | |
], | ||
) | ||
|
||
xxd_prog = find_program('xxd', required: true) | ||
xxd_generator = generator( | ||
xxd_prog, | ||
output: '@[email protected]', | ||
arguments: ['-n', '@EXTRA_ARGS@', '-i', '@INPUT@', '@OUTPUT@'], | ||
) | ||
|
||
# FIXME: the explicit 'B612_Regular_ttf' below would ideally be @[email protected]() above except substitution does not work there | ||
|
||
font_b612_c = xxd_generator.process( | ||
'src/fonts/polarsys-b612/fonts/ttf/B612-Regular.ttf', | ||
extra_args: 'B612_Regular_ttf', | ||
) | ||
|
||
brew_prefix = '/opt/homebrew/include' | ||
brew = find_program('brew', required: false) | ||
if brew.found() | ||
|
@@ -218,6 +232,7 @@ if get_option('front-lvgl').enabled() | |
'src/uicomponents/UIComponents.cpp', | ||
'src/front-lvgl.cpp', | ||
'src/lv_conf.h', | ||
font_b612_c, | ||
'src/generated/domains.hpp', | ||
version_file, | ||
], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
FROM arm32v5/debian:bookworm | ||
RUN apt-get update | ||
RUN apt-get -yy install build-essential git cmake ninja-build nlohmann-json3-dev pkg-config libssl-dev | ||
RUN apt-get -yy install build-essential git cmake ninja-build nlohmann-json3-dev pkg-config libssl-dev xxd | ||
RUN apt-get -yy install python3-pip | ||
RUN pip install --break-system-packages meson | ||
RUN git config --global --add safe.directory '*' # this makes meson's vcs_tag() work |
Submodule polarsys-b612
added at
48ac6b
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters