wlroots-hyprland/examples/meson.build

15 lines
694 B
Meson
Raw Normal View History

2017-07-17 20:38:28 +02:00
lib_shared = static_library('shared',
2017-08-24 21:26:51 +02:00
['shared.c', 'cat.c', 'ini.c', 'config.c'],
2017-08-13 14:26:32 +02:00
dependencies: wlroots)
2017-07-17 20:38:28 +02:00
executable('simple', 'simple.c', dependencies: wlroots, link_with: lib_shared)
executable('rotation', 'rotation.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)
executable('output-layout', 'output-layout.c', dependencies: wlroots, link_with: lib_shared)
executable('compositor', 'compositor.c',
2017-08-13 14:26:32 +02:00
dependencies: wlroots,
link_with: lib_shared)