mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26:16 +01:00
3dbef3223b
The GIR files are now built by GLib itself, so they will be in the build directories of each sub-library, except for GLib-2.0 which is built alongside GObject-2.0.
24 lines
685 B
Meson
24 lines
685 B
Meson
expand_content_files = [
|
|
'modules.md',
|
|
]
|
|
|
|
gmodule_toml = configure_file(input: 'gmodule.toml.in', output: 'gmodule.toml', configuration: toml_conf)
|
|
|
|
custom_target('gmodule-docs',
|
|
input: [ gmodule_toml, gmodule_gir[0] ],
|
|
output: 'gmodule',
|
|
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'),
|
|
'@INPUT1@',
|
|
],
|
|
build_by_default: true,
|
|
depend_files: expand_content_files,
|
|
)
|