mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
Add example for idle protocol
Signed-off-by: Heghedus Razvan <heghedus.razvan@gmail.com>
This commit is contained in:
parent
440cf7112d
commit
9e85283f06
2 changed files with 198 additions and 0 deletions
|
|
@ -5,6 +5,8 @@ lib_shared = static_library(
|
|||
include_directories: include_directories('support')
|
||||
)
|
||||
|
||||
threads = dependency('threads')
|
||||
|
||||
executable('simple', 'simple.c', dependencies: wlroots, link_with: lib_shared)
|
||||
executable('pointer', 'pointer.c', dependencies: wlroots, link_with: lib_shared)
|
||||
executable('touch', 'touch.c', dependencies: wlroots, link_with: lib_shared)
|
||||
|
|
@ -32,3 +34,10 @@ executable(
|
|||
dependencies: [wayland_client, wlr_protos, wlroots],
|
||||
link_with: lib_shared,
|
||||
)
|
||||
|
||||
executable(
|
||||
'idle',
|
||||
'idle.c',
|
||||
dependencies: [wayland_client, wlr_protos, wlroots, threads],
|
||||
link_with: lib_shared,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue