diff options
author | David Robillard <d@drobilla.net> | 2023-09-02 17:07:14 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-09-22 23:54:50 -0400 |
commit | 15e75b4b6b302c8a12a799dd008f756437cea60d (patch) | |
tree | 87107dcbc5194d58c070915976068fca5c39c6c1 /doc/meson.build | |
parent | f2e5a661cbb6022b60104173990450782aa6ac14 (diff) | |
download | serd-15e75b4b6b302c8a12a799dd008f756437cea60d.tar.gz serd-15e75b4b6b302c8a12a799dd008f756437cea60d.tar.bz2 serd-15e75b4b6b302c8a12a799dd008f756437cea60d.zip |
Clean up sphinx build commands
Diffstat (limited to 'doc/meson.build')
-rw-r--r-- | doc/meson.build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/meson.build b/doc/meson.build index 95488fc0..0a706dc2 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -59,12 +59,14 @@ if build_docs subdir('api') # Build strict Sphinx flags, with termination on warnings if werror=true - sphinx_flags = ['-E', '-a', '-q'] + sphinx_in_dir = meson.current_build_dir() + sphinx_flags = ['-d', sphinx_in_dir / '.doctrees', '-E', '-a', '-q'] if get_option('werror') sphinx_flags += ['-W'] endif # Run Sphinx to generate final documentation for each format + sphinx_build_command = [sphinx_build] + sphinx_flags foreach format : ['html', 'singlehtml'] if not get_option(format).disabled() subdir(format) |