feat: add overview jump mode

This commit is contained in:
DreamMaoMao 2026-06-16 23:00:24 +08:00
parent 055607383a
commit 83e5fafd65
13 changed files with 575 additions and 1 deletions

View file

@ -36,6 +36,7 @@ libwayland_client_dep = dependency('wayland-client')
pcre2_dep = dependency('libpcre2-8')
pixman_dep = dependency('pixman-1')
cjson_dep = dependency('libcjson')
pangocairo_dep = dependency('pangocairo')
# version info
git = find_program('git', required : false)
@ -93,6 +94,7 @@ endif
executable('mango',
'src/mango.c',
'src/common/util.c',
'src/draw/text-node.c',
wayland_sources,
dependencies : [
libm,
@ -106,6 +108,7 @@ executable('mango',
pcre2_dep,
pixman_dep,
cjson_dep,
pangocairo_dep,
],
install : true,
c_args : c_args,