meson: Fix coding style in meson.build files

Consistently go for 4 spaces indentation, and always put a space between
the colon in argument lists, as per the examples from the meson
documentation.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Laurent Pinchart 2019-05-23 00:05:30 +03:00
parent 1f32abb995
commit 41adc3f8d3
9 changed files with 57 additions and 57 deletions

View file

@ -4,7 +4,7 @@ doc_install_dir = join_paths(get_option('datadir'), 'doc', 'libcamera-@0@'.forma
# Doxygen
#
doxygen = find_program('doxygen', required: false)
doxygen = find_program('doxygen', required : false)
if doxygen.found()
cdata = configuration_data()
@ -12,30 +12,30 @@ if doxygen.found()
cdata.set('TOP_SRCDIR', meson.source_root())
cdata.set('TOP_BUILDDIR', meson.build_root())
doxyfile = configure_file(input: 'Doxyfile.in',
output: 'Doxyfile',
configuration: cdata)
doxyfile = configure_file(input : 'Doxyfile.in',
output : 'Doxyfile',
configuration : cdata)
custom_target('doxygen',
input: [
input : [
doxyfile,
libcamera_api,
libcamera_headers,
libcamera_sources,
],
output: 'api-html',
command: [doxygen, doxyfile],
install: true,
install_dir: doc_install_dir)
output : 'api-html',
command : [doxygen, doxyfile],
install : true,
install_dir : doc_install_dir)
endif
#
# Sphinx
#
sphinx = find_program('sphinx-build-3', required: false)
sphinx = find_program('sphinx-build-3', required : false)
if not sphinx.found()
sphinx = find_program('sphinx-build', required: false)
sphinx = find_program('sphinx-build', required : false)
endif
if sphinx.found()
@ -48,10 +48,10 @@ if sphinx.found()
]
custom_target('documentation',
command: [sphinx, '-q', '-W', '-b', 'html', meson.current_source_dir(), '@OUTPUT@'],
input: docs_sources,
output: 'html',
build_by_default: true,
install: true,
install_dir: doc_install_dir)
command : [sphinx, '-q', '-W', '-b', 'html', meson.current_source_dir(), '@OUTPUT@'],
input : docs_sources,
output : 'html',
build_by_default : true,
install : true,
install_dir : doc_install_dir)
endif