mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-14 08:21:27 -04:00
meson: add pixman dependency
This commit is contained in:
parent
ece09cc76f
commit
9259696b18
1 changed files with 3 additions and 1 deletions
|
|
@ -42,7 +42,9 @@ cc = meson.get_compiler('c')
|
||||||
math = cc.find_library('m')
|
math = cc.find_library('m')
|
||||||
|
|
||||||
threads = dependency('threads')
|
threads = dependency('threads')
|
||||||
|
freetype = dependency('freetype2')
|
||||||
fontconfig = dependency('fontconfig')
|
fontconfig = dependency('fontconfig')
|
||||||
|
pixman = dependency('pixman-1')
|
||||||
cairo = dependency('cairo')
|
cairo = dependency('cairo')
|
||||||
wayland_protocols = dependency('wayland-protocols')
|
wayland_protocols = dependency('wayland-protocols')
|
||||||
wayland_client = dependency('wayland-client')
|
wayland_client = dependency('wayland-client')
|
||||||
|
|
@ -99,7 +101,7 @@ executable(
|
||||||
'tllist.h',
|
'tllist.h',
|
||||||
'vt.c', 'vt.h',
|
'vt.c', 'vt.h',
|
||||||
wl_proto_src + wl_proto_headers,
|
wl_proto_src + wl_proto_headers,
|
||||||
dependencies: [threads, math, cairo, fontconfig, wayland_client, wayland_cursor, xkb],
|
dependencies: [threads, math, freetype, fontconfig, pixman, cairo, wayland_client, wayland_cursor, xkb],
|
||||||
install: true)
|
install: true)
|
||||||
|
|
||||||
custom_target(
|
custom_target(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue