2017-08-30 18:30:47 +00:00
|
|
|
lib_shared = static_library(
|
|
|
|
'shared',
|
|
|
|
['shared.c', 'cat.c', 'ini.c', 'config.c'],
|
|
|
|
dependencies: wlroots,
|
|
|
|
)
|
2017-07-17 18:38:28 +00:00
|
|
|
|
2017-08-11 13:37:09 +00:00
|
|
|
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)
|
|
|
|
executable('tablet', 'tablet.c', dependencies: wlroots, link_with: lib_shared)
|
2017-08-09 17:25:52 +00:00
|
|
|
|
2017-08-30 18:30:47 +00:00
|
|
|
executable(
|
|
|
|
'rotation',
|
|
|
|
'rotation.c',
|
|
|
|
dependencies: wlroots,
|
|
|
|
link_with: lib_shared,
|
|
|
|
)
|
|
|
|
|
|
|
|
executable(
|
|
|
|
'output-layout',
|
|
|
|
'output-layout.c',
|
|
|
|
dependencies: wlroots,
|
|
|
|
link_with: lib_shared,
|
|
|
|
)
|
2017-09-08 16:09:09 +00:00
|
|
|
|
|
|
|
executable(
|
|
|
|
'screenshot',
|
|
|
|
'screenshot.c',
|
|
|
|
dependencies: [wayland_client, wlr_protos, dependency('cairo')],
|
|
|
|
)
|