mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-30 03:20:56 +00:00
78 lines
2.0 KiB
Meson
78 lines
2.0 KiB
Meson
if introspection.allowed() and get_option('docs')
|
|
toml_conf = configuration_data()
|
|
docgen_version = source_version
|
|
if git.found() and source_version != fwupd_version
|
|
docgen_version = run_command(git, 'branch', '--show-current').stdout().strip()
|
|
endif
|
|
toml_conf.set('version', docgen_version)
|
|
|
|
fwupd_toml = configure_file(
|
|
input: 'fwupd.toml.in',
|
|
output: 'fwupd.toml',
|
|
configuration: toml_conf
|
|
)
|
|
|
|
fwupdplugin_toml = configure_file(
|
|
input: 'fwupdplugin.toml.in',
|
|
output: 'fwupdplugin.toml',
|
|
configuration: toml_conf
|
|
)
|
|
|
|
custom_target('doc-fwupd',
|
|
input: [
|
|
fwupd_toml,
|
|
fwupd_gir[0],
|
|
],
|
|
output: 'libfwupd',
|
|
command: [
|
|
gidocgen,
|
|
'generate',
|
|
'--quiet',
|
|
'--add-include-path=@0@'.format(meson.current_build_dir() / '../libfwupd'),
|
|
'--config=@INPUT0@',
|
|
'--output-dir=@OUTPUT@',
|
|
'--no-namespace-dir',
|
|
'--content-dir=@0@'.format(meson.current_source_dir()),
|
|
'@INPUT1@',
|
|
],
|
|
depends: [
|
|
fwupd_gir[0],
|
|
],
|
|
build_by_default: true,
|
|
install: true,
|
|
install_dir: join_paths(datadir, 'doc'),
|
|
)
|
|
|
|
custom_target('doc-fwupdplugin',
|
|
input: [
|
|
fwupdplugin_toml,
|
|
fwupdplugin_gir[0],
|
|
],
|
|
output: 'libfwupdplugin',
|
|
command: [
|
|
gidocgen,
|
|
'generate',
|
|
'--quiet',
|
|
'--add-include-path=@0@'.format(meson.current_build_dir() / '../libfwupd'),
|
|
'--add-include-path=@0@'.format(meson.current_build_dir() / '../libfwupdplugin'),
|
|
'--config=@INPUT0@',
|
|
'--output-dir=@OUTPUT@',
|
|
'--no-namespace-dir',
|
|
'--content-dir=@0@'.format(meson.current_source_dir()),
|
|
'@INPUT1@',
|
|
],
|
|
depends: [
|
|
fwupdplugin_gir[0],
|
|
],
|
|
build_by_default: true,
|
|
install: true,
|
|
install_dir: join_paths(datadir, 'doc'),
|
|
)
|
|
install_data(['urlmap_fwupd.js'],
|
|
install_dir : join_paths(datadir, 'doc', 'libfwupd')
|
|
)
|
|
install_data(['urlmap_fwupdplugin.js'],
|
|
install_dir : join_paths(datadir, 'doc', 'libfwupdplugin')
|
|
)
|
|
endif
|