From c60069241f5ebd7c3a024435171efc58f3d01522 Mon Sep 17 00:00:00 2001 From: Kieran Bingham Date: Tue, 20 Nov 2018 08:18:42 -0800 Subject: Documentation: Introduce sphinx documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Utilise sphinx-build to generate documentation in HTML form, and populate with some initial content. An initial conf.py is generated from sphinx-quickstart and answering initial questions. Reviewed-by: Niklas Söderlund Signed-off-by: Kieran Bingham --- meson.build | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 17767b9e..1e2bf956 100644 --- a/meson.build +++ b/meson.build @@ -2,6 +2,11 @@ project('libcamera - supporting complex camera pipelines', 'c', 'cpp', version : '0.1', license : 'LGPL 2.1+') +# TODO: Extract this from project.version. +# Ideally the version at Documentation/conf.py should be +# generated from this too. +api_version = '0.1' + common_arguments = [ '-Wall', '-Wextra', @@ -17,6 +22,7 @@ add_project_arguments(cpp_arguments, language: 'cpp') inc = include_directories('include') +subdir('Documentation') subdir('include') subdir('lib') subdir('test') -- cgit v1.2.1