From 41adc3f8d39e78eb432bf33ab859d1f5429b85dc Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Thu, 23 May 2019 00:05:30 +0300 Subject: 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 --- Documentation/meson.build | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'Documentation') diff --git a/Documentation/meson.build b/Documentation/meson.build index 12a99307..629e8531 100644 --- a/Documentation/meson.build +++ b/Documentation/meson.build @@ -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 -- cgit v1.2.1