mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-19 15:04:50 +02:00
Add cairo and pixman as deps on Linux
Needed to render COLRv1 fonts. Which are needed because bitmap emoji fonts dont render well at large font sizes such as can be used with multicell chars.
This commit is contained in:
3
setup.py
3
setup.py
@@ -640,8 +640,9 @@ def kitty_env(args: Options) -> Env:
|
||||
# warnings about it
|
||||
cppflags.append('-DGL_SILENCE_DEPRECATION')
|
||||
else:
|
||||
cflags.extend(pkg_config('fontconfig', '--cflags-only-I'))
|
||||
cflags.extend(pkg_config('cairo-fc', '--cflags-only-I'))
|
||||
platform_libs = []
|
||||
platform_libs.extend(pkg_config('cairo-fc', '--libs'))
|
||||
cflags.extend(pkg_config('harfbuzz', '--cflags-only-I'))
|
||||
platform_libs.extend(pkg_config('harfbuzz', '--libs'))
|
||||
pylib = get_python_flags(args, cflags)
|
||||
|
||||
Reference in New Issue
Block a user