mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-07 09:56:15 +01:00
24 lines
728 B
Meson
24 lines
728 B
Meson
|
girepository_toml = configure_file(
|
||
|
input: 'girepository.toml.in',
|
||
|
output: 'girepository.toml',
|
||
|
configuration: toml_conf,
|
||
|
)
|
||
|
|
||
|
custom_target('girepository-docs',
|
||
|
input: [ girepository_toml, girepository_gir[0] ],
|
||
|
output: 'girepository',
|
||
|
command: [
|
||
|
gidocgen,
|
||
|
'generate',
|
||
|
gidocgen_common_args,
|
||
|
'--config=@INPUT0@',
|
||
|
'--output-dir=@OUTPUT@',
|
||
|
'--content-dir=@0@'.format(meson.current_source_dir()),
|
||
|
'--add-include-path=@0@'.format(meson.current_build_dir() / '../../../gobject'),
|
||
|
'--add-include-path=@0@'.format(meson.current_build_dir() / '../../../gmodule'),
|
||
|
'--add-include-path=@0@'.format(meson.current_build_dir() / '../../../gio'),
|
||
|
'@INPUT1@',
|
||
|
],
|
||
|
build_by_default: true,
|
||
|
)
|