This is an automatic generated email to let you know that the following patch were queued:
Subject: edid-decode: build: Move sources to its own variable and fix formatting Author: Sebastian Wick <sebastian.w...@redhat.com> Date: Wed Jun 5 13:09:02 2024 +0200 Move sources to its own variable and fix formatting. Signed-off-by: Sebastian Wick <sebastian.w...@redhat.com> Signed-off-by: Hans Verkuil <hverkuil-ci...@xs4all.nl> meson.build | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) --- diff --git a/meson.build b/meson.build index ca5765276bc5..1e0fe251dcc8 100644 --- a/meson.build +++ b/meson.build @@ -46,8 +46,7 @@ if target_machine.system() == 'emscripten' endforeach endif -edid_decode = executable( - 'edid-decode', +edid_decode_sources = [ 'calc-gtf-cvt.cpp', 'calc-ovt.cpp', 'edid-decode.cpp', @@ -57,9 +56,14 @@ edid_decode = executable( 'parse-displayid-block.cpp', 'parse-ls-ext-block.cpp', 'parse-vtb-ext-block.cpp', - cpp_args : edid_decode_args, +] + +edid_decode = executable( + 'edid-decode', + sources: edid_decode_sources, + cpp_args: edid_decode_args, link_args: edid_decode_link_args, - install : true, + install: true, ) install_man('edid-decode.1') \ No newline at end of file