This commit is contained in:
Ernesto Cruz 2026-07-04 11:34:44 +02:00 committed by GitHub
commit f07f994678
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 970 additions and 8 deletions

View file

@ -39,6 +39,8 @@ libscenefx_dep = dependency('scenefx-0.5',version: '>=0.5.0')
pixman_dep = dependency('pixman-1')
cjson_dep = dependency('libcjson')
pangocairo_dep = dependency('pangocairo')
egl_dep = dependency('egl')
glesv2_dep = dependency('glesv2')
# version info
git = find_program('git', required : false)
@ -97,7 +99,7 @@ executable('mango',
'src/mango.c',
'src/common/util.c',
'src/draw/text-node.c',
'src/draw/effect_pass.c',
wayland_sources,
dependencies : [
libm,
@ -114,6 +116,8 @@ executable('mango',
pixman_dep,
cjson_dep,
pangocairo_dep,
egl_dep,
glesv2_dep,
],
install : true,
c_args : c_args,