mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
meson.build: link with -lm
This commit is contained in:
parent
29b9e3334d
commit
2a7086d9f7
1 changed files with 2 additions and 1 deletions
|
|
@ -50,6 +50,7 @@ cairo = dependency('cairo')
|
|||
pangocairo = dependency('pangocairo')
|
||||
input = dependency('libinput', version: '>=1.14')
|
||||
pixman = dependency('pixman-1')
|
||||
math = cc.find_library('m')
|
||||
|
||||
if get_option('xwayland').enabled() and not wlroots_has_xwayland
|
||||
error('no wlroots Xwayland support')
|
||||
|
|
@ -64,7 +65,7 @@ subdir('protocols')
|
|||
|
||||
labwc_deps = [
|
||||
server_protos, wayland_server, wlroots, xkbcommon, xml2, glib,
|
||||
cairo, pangocairo, input, pixman
|
||||
cairo, pangocairo, input, pixman, math,
|
||||
]
|
||||
|
||||
subdir('include')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue