diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/c/api/meson.build | 2 | ||||
-rw-r--r-- | doc/meson.build | 9 |
2 files changed, 8 insertions, 3 deletions
diff --git a/doc/c/api/meson.build b/doc/c/api/meson.build index 6463f7c..6c629e6 100644 --- a/doc/c/api/meson.build +++ b/doc/c/api/meson.build @@ -3,7 +3,7 @@ c_suil_rst = custom_target( 'suil.rst', - command: [dox_to_sphinx, '-f', '@INPUT0@', '@OUTDIR@'], + command: [sphinxygen, '-f', '@INPUT0@', '@OUTDIR@'], input: [c_index_xml] + c_rst_files, output: 'suil.rst', ) diff --git a/doc/meson.build b/doc/meson.build index 7e447d5..4bccb1f 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -4,10 +4,15 @@ docdir = get_option('datadir') / 'doc' doxygen = find_program('doxygen', required: get_option('docs')) -dox_to_sphinx = files('../scripts/dox_to_sphinx.py') +sphinxygen = find_program('sphinxygen', required: false) sphinx_build = find_program('sphinx-build', required: get_option('docs')) -build_docs = doxygen.found() and sphinx_build.found() +if not sphinxygen.found() + subproject('sphinxygen') + sphinxygen = find_program('sphinxygen', required: get_option('docs')) +endif + +build_docs = doxygen.found() and sphinxygen.found() and sphinx_build.found() if build_docs subdir('c') |