Refactor meson build files

Use tabs for indentation and break up function calls over 80 col.
This commit is contained in:
Tony Crisci 2017-08-30 14:30:47 -04:00
parent 6daf9e9ab2
commit 368f74e4df
9 changed files with 209 additions and 151 deletions

View file

@ -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,
)