summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/html/meson.build11
-rw-r--r--doc/singlehtml/meson.build11
2 files changed, 18 insertions, 4 deletions
diff --git a/doc/html/meson.build b/doc/html/meson.build
index 7403e95..14ded6d 100644
--- a/doc/html/meson.build
+++ b/doc/html/meson.build
@@ -7,7 +7,10 @@ custom_target(
'html',
build_by_default: true,
command: [
- sphinx_build, '-M', 'html', '@OUTDIR@' / '..', '@OUTDIR@' / '..',
+ sphinx_build,
+ '-M', 'html',
+ '@OUTDIR@' / '..',
+ '@OUTDIR@' / '..',
'-t', 'html',
] + sphinx_flags,
input: [c_rst_files, c_zix_rst, c_index_xml, conf_py],
@@ -26,5 +29,9 @@ custom_target(
)
if not meson.is_subproject()
- summary('Paginated HTML', get_option('prefix') / html_dir, section: 'Directories')
+ summary(
+ 'Paginated HTML',
+ get_option('prefix') / html_dir,
+ section: 'Directories',
+ )
endif
diff --git a/doc/singlehtml/meson.build b/doc/singlehtml/meson.build
index 178e2dd..0fea876 100644
--- a/doc/singlehtml/meson.build
+++ b/doc/singlehtml/meson.build
@@ -7,7 +7,10 @@ custom_target(
'singlehtml',
build_by_default: true,
command: [
- sphinx_build, '-M', 'singlehtml', '@OUTDIR@' / '..', '@OUTDIR@' / '..',
+ sphinx_build,
+ '-M', 'singlehtml',
+ '@OUTDIR@' / '..',
+ '@OUTDIR@' / '..',
'-t', 'singlehtml',
] + sphinx_flags,
input: [c_rst_files, c_zix_rst, c_index_xml, conf_py],
@@ -20,5 +23,9 @@ custom_target(
)
if not meson.is_subproject()
- summary('Unified HTML', get_option('prefix') / singlehtml_dir, section: 'Directories')
+ summary(
+ 'Unified HTML',
+ get_option('prefix') / singlehtml_dir,
+ section: 'Directories',
+ )
endif