mirror of
https://github.com/labwc/labwc.git
synced 2026-02-27 01:40:30 -05: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')
|
pangocairo = dependency('pangocairo')
|
||||||
input = dependency('libinput', version: '>=1.14')
|
input = dependency('libinput', version: '>=1.14')
|
||||||
pixman = dependency('pixman-1')
|
pixman = dependency('pixman-1')
|
||||||
|
math = cc.find_library('m')
|
||||||
|
|
||||||
if get_option('xwayland').enabled() and not wlroots_has_xwayland
|
if get_option('xwayland').enabled() and not wlroots_has_xwayland
|
||||||
error('no wlroots Xwayland support')
|
error('no wlroots Xwayland support')
|
||||||
|
|
@ -64,7 +65,7 @@ subdir('protocols')
|
||||||
|
|
||||||
labwc_deps = [
|
labwc_deps = [
|
||||||
server_protos, wayland_server, wlroots, xkbcommon, xml2, glib,
|
server_protos, wayland_server, wlroots, xkbcommon, xml2, glib,
|
||||||
cairo, pangocairo, input, pixman
|
cairo, pangocairo, input, pixman, math,
|
||||||
]
|
]
|
||||||
|
|
||||||
subdir('include')
|
subdir('include')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue