Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions configs/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ config HAVE_LIBPNG
config HAVE_LIBJPEG
def_bool $(shell,pkg-config --exists libjpeg && echo y || echo n)

config HAVE_CAIRO
def_bool $(shell,pkg-config --exists cairo && echo y || echo n)

choice
prompt "Backend Selection"
default BACKEND_SDL
Expand Down Expand Up @@ -281,9 +284,9 @@ config TOOLS
config TOOL_FONTEDIT
bool "Build scalable font editor"
default y
depends on TOOLS && HAVE_SDL2
depends on TOOLS && HAVE_SDL2 && HAVE_CAIRO
help
Interactive font editor for Twin font format.
Interactive font editor for Mado font format.
Allows creation and modification of scalable fonts.

config PERF_TEST
Expand Down