diff options
author | David Robillard <d@drobilla.net> | 2021-01-06 23:53:33 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-01-08 18:13:49 +0100 |
commit | 69d5d2adde1d13578a94e8b1934235987cf9b2bd (patch) | |
tree | 9720c044447bb12e6e714ac969ebb7b0daf87c5f /doc/c/meson.build | |
parent | 94e30b9c3c188dfdf4765f026872f95ea3cfdda2 (diff) | |
download | pugl-69d5d2adde1d13578a94e8b1934235987cf9b2bd.tar.gz pugl-69d5d2adde1d13578a94e8b1934235987cf9b2bd.tar.bz2 pugl-69d5d2adde1d13578a94e8b1934235987cf9b2bd.zip |
Switch to Meson
Diffstat (limited to 'doc/c/meson.build')
-rw-r--r-- | doc/c/meson.build | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/doc/c/meson.build b/doc/c/meson.build new file mode 100644 index 0000000..df9363e --- /dev/null +++ b/doc/c/meson.build @@ -0,0 +1,44 @@ +config = configuration_data() +config.set('PUGL_VERSION', meson.project_version()) + +conf_py = configure_file(configuration: config, + input: '../conf.py.in', + output: 'conf.py') + +configure_file(copy: true, input: '../deployment.rst', output: 'deployment.rst') +configure_file(copy: true, input: '../summary.rst', output: 'summary.rst') + +c_rst_files = files( + 'index.rst', + 'overview.rst', + 'world.rst', + 'view.rst', + 'events.rst', + 'event-loop.rst', + 'shutting-down.rst' +) + +foreach f : c_rst_files + configure_file(copy: true, input: f, output: '@PLAINNAME@') +endforeach + +subdir('xml') +subdir('api') + +docs = custom_target( + 'C API Documentation (singlehtml)', + command: [sphinx_build, '-M', 'singlehtml', 'doc/c/', 'doc/c/', '-E', '-q', '-t', 'singlehtml'], + input: [c_rst_files, c_pugl_rst, c_index_xml], + output: 'singlehtml', + build_by_default: true, + install: true, + install_dir: docdir / 'pugl-0') + +docs = custom_target( + 'C API Documentation (html)', + command: [sphinx_build, '-M', 'html', 'doc/c/', 'doc/c/', '-E', '-q', '-t', 'html'], + input: [c_rst_files, c_pugl_rst, c_index_xml], + output: 'html', + build_by_default: true, + install: true, + install_dir: docdir / 'pugl-0') |