meson: Fix space around colon issues

The meson style, which libcamera follows, recommends a space before
colons in function parameters. Fix the style violations through the
project.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Umang Jain <umang.jain@ideasonboard.com>
This commit is contained in:
Laurent Pinchart 2023-07-06 10:23:36 +03:00
parent adb1bbb748
commit ca437b4a0c
12 changed files with 26 additions and 26 deletions

View file

@ -57,9 +57,9 @@ if ((cc.get_id() == 'gcc' and cc.version().version_compare('>=9.0') and
qt5_cpp_args += ['-Wno-deprecated-copy']
endif
resources = qt5.preprocess(moc_headers: qcam_moc_headers,
resources = qt5.preprocess(moc_headers : qcam_moc_headers,
qresources : qcam_resources,
dependencies: qt5_dep)
dependencies : qt5_dep)
qcam = executable('qcam', qcam_sources, resources,
install : true,

View file

@ -43,6 +43,6 @@ libcamera_gst = shared_library('gstlibcamera',
libcamera_gst_sources,
cpp_args : libcamera_gst_cpp_args,
dependencies : [libcamera_public, gstvideo_dep, gstallocator_dep],
install: true,
install : true,
install_dir : '@0@/gstreamer-1.0'.format(get_option('libdir')),
)

View file

@ -93,9 +93,9 @@ endif
if not libcrypto.found()
warning('Neither gnutls nor libcrypto found, all IPA modules will be isolated')
summary({'IPA modules signed with': 'None (modules will run isolated)'},
section: 'Configuration')
section : 'Configuration')
else
summary({'IPA modules signed with': libcrypto.name()}, section: 'Configuration')
summary({'IPA modules signed with' : libcrypto.name()}, section : 'Configuration')
endif
if liblttng.found()

View file

@ -93,11 +93,11 @@ pycamera = shared_module('_libcamera',
run_command('ln', '-fsrT', files('__init__.py'),
meson.current_build_dir() / '__init__.py',
check: true)
check : true)
run_command('ln', '-fsrT', meson.current_source_dir() / 'utils',
meson.current_build_dir() / 'utils',
check: true)
check : true)
install_data(['__init__.py'], install_dir : destdir)