forked from AuroraMiddleware/gtk
8b9ad1e963
On distros where wayland-client.h might not be directly in /usr/include we fail to find the correct headers otherwise.
13 lines
485 B
Meson
13 lines
485 B
Meson
wayland_cursor_sources = files([
|
|
'wayland-cursor.c',
|
|
'xcursor.c',
|
|
'os-compatibility.c'
|
|
])
|
|
|
|
libwayland_cursor = static_library('wayland+cursor',
|
|
sources: wayland_cursor_sources,
|
|
include_directories: [ confinc, ],
|
|
dependencies: [ glib_dep, wlclientdep, ],
|
|
c_args: common_cflags,
|
|
link_args: common_ldflags)
|