Add pointer support to layer shell example

This commit is contained in:
Drew DeVault 2018-03-30 17:26:58 -04:00
parent dc412c514b
commit e3eb487dc2
3 changed files with 148 additions and 15 deletions

View file

@ -6,6 +6,7 @@ lib_shared = static_library(
)
threads = dependency('threads')
wayland_cursor = dependency('wayland-cursor')
executable('simple', 'simple.c', dependencies: wlroots, link_with: lib_shared)
executable('pointer', 'pointer.c', dependencies: wlroots, link_with: lib_shared)
@ -52,5 +53,5 @@ executable(
executable(
'layer-shell',
'layer-shell.c',
dependencies: [wayland_client, wlr_protos, wlroots]
dependencies: [wayland_cursor, wayland_client, wlr_protos, wlroots]
)