mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-02 07:15:31 -04: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',
|
language: 'c',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
cc = meson.get_compiler('c')
|
||||||
|
math = cc.find_library('m')
|
||||||
threads = dependency('threads')
|
threads = dependency('threads')
|
||||||
pixman = dependency('pixman-1')
|
pixman = dependency('pixman-1')
|
||||||
wayland_protocols = dependency('wayland-protocols')
|
wayland_protocols = dependency('wayland-protocols')
|
||||||
|
|
@ -85,7 +87,7 @@ executable(
|
||||||
'vt.c', 'vt.h',
|
'vt.c', 'vt.h',
|
||||||
'wayland.c', 'wayland.h',
|
'wayland.c', 'wayland.h',
|
||||||
wl_proto_src + wl_proto_headers, version,
|
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],
|
tllist, fcft],
|
||||||
install: true)
|
install: true)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue