2018-01-07 20:42:33 +01:00
|
|
|
threads = dependency('threads')
|
2018-03-30 23:26:58 +02:00
|
|
|
wayland_cursor = dependency('wayland-cursor')
|
2018-01-07 20:42:33 +01:00
|
|
|
|
2018-04-17 00:42:10 +02:00
|
|
|
executable('simple', 'simple.c', dependencies: wlroots)
|
|
|
|
executable('pointer', 'pointer.c', dependencies: wlroots)
|
2018-04-29 23:32:07 +02:00
|
|
|
executable('touch', 'touch.c', 'cat.c', dependencies: wlroots)
|
2018-04-17 00:42:10 +02:00
|
|
|
executable('tablet', 'tablet.c', dependencies: wlroots)
|
2018-04-29 23:32:07 +02:00
|
|
|
executable('rotation', 'rotation.c', 'cat.c', dependencies: wlroots)
|
2018-04-17 00:42:10 +02:00
|
|
|
executable('multi-pointer', 'multi-pointer.c', dependencies: wlroots)
|
2018-04-29 23:32:07 +02:00
|
|
|
executable('output-layout', 'output-layout.c', 'cat.c', dependencies: wlroots)
|
2017-09-08 18:09:09 +02:00
|
|
|
|
|
|
|
executable(
|
|
|
|
'screenshot',
|
|
|
|
'screenshot.c',
|
2018-04-17 00:42:10 +02:00
|
|
|
dependencies: [wayland_client, wlr_protos, wlroots]
|
2017-09-08 18:09:09 +02:00
|
|
|
)
|
2018-01-07 20:42:33 +01:00
|
|
|
|
|
|
|
executable(
|
|
|
|
'idle',
|
|
|
|
'idle.c',
|
2018-04-17 00:42:10 +02:00
|
|
|
dependencies: [wayland_client, wlr_protos, wlroots, threads]
|
2018-01-07 20:42:33 +01:00
|
|
|
)
|
2018-02-17 11:02:00 +01:00
|
|
|
|
|
|
|
executable(
|
|
|
|
'idle-inhibit',
|
|
|
|
'idle-inhibit.c',
|
2018-04-17 00:42:10 +02:00
|
|
|
dependencies: [wayland_client, wlr_protos, wlroots, threads]
|
2018-02-17 11:02:00 +01:00
|
|
|
)
|
2018-03-18 20:09:37 +01:00
|
|
|
|
|
|
|
executable(
|
|
|
|
'layer-shell',
|
|
|
|
'layer-shell.c',
|
2018-03-30 23:26:58 +02:00
|
|
|
dependencies: [wayland_cursor, wayland_client, wlr_protos, wlroots]
|
2018-03-18 20:09:37 +01:00
|
|
|
)
|
2018-04-03 17:29:32 +02:00
|
|
|
|
|
|
|
executable(
|
|
|
|
'input-inhibitor',
|
|
|
|
'input-inhibitor.c',
|
|
|
|
dependencies: [wayland_cursor, wayland_client, wlr_protos, wlroots]
|
|
|
|
)
|