From 53c4d4c34fc49b95ca07265fc65940df9c365074 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Tue, 11 Dec 2018 20:20:07 +0200 Subject: Documentation: Generate source code documentation using Doxygen Extend the documentation build system to automatically generate documentation from source code using Doxygen. This is currently separate from the sphinx documentation, and should be integrated using the breathe (and possibly exhale) extensions. As the Documentation/meson.build file needs to reference the variables holding the source files, move the Documentation directory to the end of the subdirs() in the top-level meson.build. Signed-off-by: Laurent Pinchart --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index e6ed03f9..2fdb166c 100644 --- a/meson.build +++ b/meson.build @@ -23,11 +23,11 @@ add_project_arguments(cpp_arguments, language: 'cpp') libcamera_includes = include_directories('include') -subdir('Documentation') subdir('include') subdir('src') subdir('test') subdir('utils') +subdir('Documentation') pkg_mod = import('pkgconfig') pkg_mod.generate(libraries : libcamera, -- cgit v1.2.1