From 68293752dbfd80016dc7543b88f22c602427fa75 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 17 Jul 2022 17:45:43 -0400 Subject: Switch to meson build system --- doc/c/meson.build | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 doc/c/meson.build (limited to 'doc/c/meson.build') diff --git a/doc/c/meson.build b/doc/c/meson.build new file mode 100644 index 0000000..64d1f4c --- /dev/null +++ b/doc/c/meson.build @@ -0,0 +1,48 @@ +config = configuration_data() +config.set('SUIL_VERSION', meson.project_version()) + +conf_py = configure_file( + configuration: config, + input: files('../conf.py.in'), + output: 'conf.py', +) + +configure_file( + copy: true, + input: files('../summary.rst'), + output: 'summary.rst', +) + +c_rst_files = files( + 'index.rst', + 'overview.rst', +) + +foreach f : c_rst_files + configure_file(copy: true, input: f, output: '@PLAINNAME@') +endforeach + +subdir('xml') +subdir('api') + +docs = custom_target( + 'singlehtml', + build_by_default: true, + command: [sphinx_build, '-M', 'singlehtml', '@OUTDIR@', '@OUTDIR@', + '-E', '-q', '-t', 'singlehtml'], + input: [c_rst_files, c_suil_rst, c_index_xml], + install: true, + install_dir: docdir / 'suil-0', + output: 'singlehtml', +) + +docs = custom_target( + 'html', + build_by_default: true, + command: [sphinx_build, '-M', 'html', '@OUTDIR@', '@OUTDIR@', + '-E', '-q', '-t', 'html'], + input: [c_rst_files, c_suil_rst, c_index_xml], + install: true, + install_dir: docdir / 'suil-0', + output: 'html', +) -- cgit v1.2.1