mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-22 15:12:26 +00:00
36 lines
795 B
Meson
36 lines
795 B
Meson
lib_shared = static_library('shared',
|
|
['shared.c', 'cat.c'],
|
|
link_with: lib_wlr,
|
|
dependencies: dep_wlr)
|
|
|
|
all_libs = [
|
|
lib_shared,
|
|
lib_wlr,
|
|
]
|
|
|
|
executable('simple', 'simple.c',
|
|
dependencies: dep_wlr,
|
|
link_with: all_libs)
|
|
executable('rotation', 'rotation.c',
|
|
dependencies: dep_wlr,
|
|
link_with: all_libs)
|
|
executable('pointer', 'pointer.c',
|
|
dependencies: dep_wlr,
|
|
link_with: all_libs)
|
|
executable('touch', 'touch.c',
|
|
dependencies: dep_wlr,
|
|
link_with: all_libs)
|
|
executable('tablet', 'tablet.c',
|
|
dependencies: dep_wlr,
|
|
link_with: all_libs)
|
|
|
|
compositor_src = [
|
|
'compositor/main.c',
|
|
'compositor/wl_compositor.c',
|
|
'compositor/wl_shell.c',
|
|
]
|
|
|
|
executable('compositor', compositor_src,
|
|
dependencies: dep_wlr,
|
|
link_with: all_libs)
|