From df77f99386579116689e9fc0eea8b204ce1d97c9 Mon Sep 17 00:00:00 2001 From: Kieran Bingham Date: Tue, 27 Nov 2018 12:49:41 +0000 Subject: meson: Replace tabs for spaces Tabs are disliked within the meson build system. Replace indentation by spaces, in all existing locations. Signed-off-by: Kieran Bingham --- include/libcamera/meson.build | 2 +- lib/meson.build | 6 +++--- test/meson.build | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/libcamera/meson.build b/include/libcamera/meson.build index da685f34..8fb21e98 100644 --- a/include/libcamera/meson.build +++ b/include/libcamera/meson.build @@ -1,5 +1,5 @@ public_api = [ - 'libcamera.h', + 'libcamera.h', ] install_headers(public_api, diff --git a/lib/meson.build b/lib/meson.build index eee99b75..fcd738cc 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -1,6 +1,6 @@ sources = ['main.cpp'] libcamera = shared_library('camera', - sources, - install : true, - include_directories : inc) + sources, + install : true, + include_directories : inc) diff --git a/test/meson.build b/test/meson.build index 4f5c7a82..afe9bd9a 100644 --- a/test/meson.build +++ b/test/meson.build @@ -1,5 +1,5 @@ test_init = executable('test_init', 'init.cpp', - link_with : libcamera, - include_directories : inc) + link_with : libcamera, + include_directories : inc) test('Initialisation test', test_init) -- cgit v1.2.1