Format meson.build for readability

This commit is contained in:
Romain Vimont 2019-05-29 08:20:05 +02:00
parent 08f506b24f
commit 0fbab42f8c

View file

@ -143,18 +143,34 @@ else
link_args = [] link_args = []
endif endif
executable('scrcpy', src, dependencies: dependencies, include_directories: src_dir, install: true, c_args: c_args, link_args: link_args) executable('scrcpy', src,
dependencies: dependencies,
include_directories: src_dir,
install: true,
c_args: c_args,
link_args: link_args)
### TESTS ### TESTS
tests = [ tests = [
['test_control_event_queue', ['tests/test_control_event_queue.c', 'src/control_event.c']], ['test_control_event_queue', [
['test_control_event_serialize', ['tests/test_control_event_serialize.c', 'src/control_event.c']], 'tests/test_control_event_queue.c',
['test_strutil', ['tests/test_strutil.c', 'src/str_util.c']], 'src/control_event.c'
]],
['test_control_event_serialize', [
'tests/test_control_event_serialize.c',
'src/control_event.c'
]],
['test_strutil', [
'tests/test_strutil.c',
'src/str_util.c'
]],
] ]
foreach t : tests foreach t : tests
exe = executable(t[0], t[1], include_directories: src_dir, dependencies: dependencies) exe = executable(t[0], t[1],
include_directories: src_dir,
dependencies: dependencies)
test(t[0], exe) test(t[0], exe)
endforeach endforeach