mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
meson: we now require -lm
This commit is contained in:
parent
db1d913ba8
commit
5cd8af44c6
1 changed files with 3 additions and 1 deletions
|
|
@ -15,6 +15,8 @@ add_project_arguments(
|
|||
language: 'c',
|
||||
)
|
||||
|
||||
cc = meson.get_compiler('c')
|
||||
math = cc.find_library('m')
|
||||
threads = dependency('threads')
|
||||
pixman = dependency('pixman-1')
|
||||
wayland_protocols = dependency('wayland-protocols')
|
||||
|
|
@ -85,7 +87,7 @@ executable(
|
|||
'vt.c', 'vt.h',
|
||||
'wayland.c', 'wayland.h',
|
||||
wl_proto_src + wl_proto_headers, version,
|
||||
dependencies: [threads, pixman, wayland_client, wayland_cursor, xkb,
|
||||
dependencies: [math, threads, pixman, wayland_client, wayland_cursor, xkb,
|
||||
tllist, fcft],
|
||||
install: true)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue