mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-12-14 08:56:26 -05:00
Refactor meson build files
Use tabs for indentation and break up function calls over 80 col.
This commit is contained in:
parent
6daf9e9ab2
commit
368f74e4df
9 changed files with 209 additions and 151 deletions
|
|
@ -1,14 +1,31 @@
|
|||
lib_shared = static_library('shared',
|
||||
['shared.c', 'cat.c', 'ini.c', 'config.c'],
|
||||
dependencies: wlroots)
|
||||
lib_shared = static_library(
|
||||
'shared',
|
||||
['shared.c', 'cat.c', 'ini.c', 'config.c'],
|
||||
dependencies: wlroots,
|
||||
)
|
||||
|
||||
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',
|
||||
dependencies: wlroots,
|
||||
link_with: lib_shared)
|
||||
executable(
|
||||
'rotation',
|
||||
'rotation.c',
|
||||
dependencies: wlroots,
|
||||
link_with: lib_shared,
|
||||
)
|
||||
|
||||
executable(
|
||||
'output-layout',
|
||||
'output-layout.c',
|
||||
dependencies: wlroots,
|
||||
link_with: lib_shared,
|
||||
)
|
||||
|
||||
executable(
|
||||
'compositor',
|
||||
'compositor.c',
|
||||
dependencies: wlroots,
|
||||
link_with: lib_shared,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue