From e2731cf7008b2f1f9e1f44283b07c3fe0296bbee Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 17 Jul 2022 17:33:37 -0400 Subject: Switch to meson build system --- doc/meson.build | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 doc/meson.build (limited to 'doc/meson.build') diff --git a/doc/meson.build b/doc/meson.build new file mode 100644 index 0000000..a354f30 --- /dev/null +++ b/doc/meson.build @@ -0,0 +1,36 @@ +docdir = get_option('datadir') / 'doc' + +doxygen = find_program('doxygen', required: get_option('docs')) + +build_docs = doxygen.found() + +if build_docs + config = configuration_data() + config.set('SORD_VERSION', meson.project_version()) + config.set('SORD_SRCDIR', sord_src_root) + config.set('DOX_OUTPUT', meson.current_build_dir()) + + c_doxyfile = configure_file( + configuration: config, + input: files('reference.doxygen.in'), + output: 'reference.doxygen', + ) + + custom_target( + 'html', + build_by_default: true, + command: [doxygen, '@INPUT0@'], + input: [c_doxyfile] + c_headers, + install: true, + install_dir: docdir / versioned_name, + output: 'html', + ) +endif + +if not get_option('docs').disabled() + install_man(files('sord_validate.1', 'sordi.1')) +endif + +if not meson.is_subproject() + summary('API Documentation', build_docs, bool_yn: true) +endif -- cgit v1.2.1