xref: /dpdk/doc/guides/meson.build (revision 089e5ed727a15da2729cfee9b63533dd120bd04c)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2018 Intel Corporation
3
4sphinx = find_program('sphinx-build', required: get_option('enable_docs'))
5
6if sphinx.found()
7	htmldir = join_paths('share', 'doc', 'dpdk')
8	html_guides_build = custom_target('html_guides_build',
9		input: meson.current_source_dir(),
10		output: 'guides',
11		command: [sphinx, '-b', 'html',
12			'-d', meson.current_build_dir() + '/.doctrees',
13			'@INPUT@', meson.current_build_dir() + '/guides'],
14		build_by_default: get_option('enable_docs'),
15		install: get_option('enable_docs'),
16		install_dir: htmldir)
17
18	doc_targets += html_guides_build
19	doc_target_names += 'HTML_Guides'
20
21	# sphinx leaves a .buildinfo in the target directory, which we don't
22	# want to install. Note that sh -c has to be used, otherwise the
23	# env var does not get expanded if calling rm/install directly.
24	meson.add_install_script('sh', '-c',
25		'rm -f $MESON_INSTALL_DESTDIR_PREFIX/share/doc/dpdk/guides/.buildinfo')
26	meson.add_install_script('sh', '-c',
27		'install -D -m0644 $MESON_SOURCE_ROOT/doc/guides/custom.css $MESON_INSTALL_DESTDIR_PREFIX/share/doc/dpdk/guides/_static/css/custom.css')
28endif
29