forked from lix-project/lix
Qyriad
b81eec6ed5
This commit adds the capability for building the Doxygen internal API
docs in the Meson buildsystem, and also makes doing so the default for
the internal-api-docs hydra job. Aside from the /nix-support directory,
which differed only by the hash part of a store path, the outputs of
hydraJobs.internal-api-docs before and after this commit were
bit-for-bit identical on my machine.
Change-Id: I98f0017891c25b06866c15f7652fe74f706ec8e1
34 lines
880 B
Meson
34 lines
880 B
Meson
doxygen_cfg = configure_file(
|
|
input : 'doxygen.cfg.in',
|
|
output : 'doxygen.cfg',
|
|
configuration : {
|
|
'PACKAGE_VERSION': meson.project_version(),
|
|
'RAPIDCHECK_HEADERS': rapidcheck_meson.get_variable('includedir'),
|
|
'docdir' : meson.current_build_dir(),
|
|
},
|
|
)
|
|
|
|
internal_api_docs = custom_target(
|
|
'internal-api-docs',
|
|
command : [
|
|
bash,
|
|
# Meson can you please just give us a `workdir` argument to custom targets...
|
|
'-c',
|
|
# We have to prefix the doxygen_cfg path with the project build root
|
|
# because of the cd in front.
|
|
'cd @0@ && @1@ @2@/@INPUT0@'.format(
|
|
meson.project_source_root(),
|
|
doxygen.full_path(),
|
|
meson.project_build_root(),
|
|
),
|
|
],
|
|
input : [
|
|
doxygen_cfg,
|
|
],
|
|
output : 'html',
|
|
install : true,
|
|
install_dir : datadir / 'doc/nix/internal-api',
|
|
)
|
|
|
|
alias_target('internal-api-html', internal_api_docs)
|