diff options
author | Manatsawin Hanmongkolchai <[email protected]> | 2022-11-17 00:08:21 +0700 |
---|---|---|
committer | raveit65 <[email protected]> | 2023-04-20 18:07:49 +0200 |
commit | 5cfe151b2fe32d258cc26318a1d46928f5228738 (patch) | |
tree | c395b302800f10046b2f73df8566a12ea9a2615d | |
parent | 8404de12c85b0674f397a616596f85b82b2d7e66 (diff) | |
download | eom-5cfe151b2fe32d258cc26318a1d46928f5228738.tar.bz2 eom-5cfe151b2fe32d258cc26318a1d46928f5228738.tar.xz |
Document why gtkdoc doesn't work
-rw-r--r-- | doc/reference/meson.build | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/doc/reference/meson.build b/doc/reference/meson.build index fab9d02..2d491c7 100644 --- a/doc/reference/meson.build +++ b/doc/reference/meson.build @@ -16,17 +16,18 @@ endif sgml = configure_file(input: 'eom-docs.sgml.in', configuration: pkg_info, output: 'eom-docs.sgml') versionsxml = configure_file(input: 'version.xml.in', configuration: pkg_info, output: 'version.xml') -if false -gnome.gtkdoc( - 'eom', - src_dir: src_inc, - include_directories: include_dirs, - main_sgml: 'eom-docs.sgml.in', - scan_args: ['--rebuild-types'], - mkdb_args: ['--sgml-mode', '--output-format=xml'], - ignore_headers: ignore_headers, - content_files: [versionsxml], - dependencies: [all_deps, libeom], - install: true, -) + +if false # Doesn't work, see below + gnome.gtkdoc( + 'eom', + src_dir: src_inc, + main_sgml: 'eom-docs.sgml.in', + scan_args: ['--rebuild-types'], + mkdb_args: ['--sgml-mode', '--output-format=xml'], + ignore_headers: ignore_headers, + content_files: [versionsxml], + # Meson doesn't link built object file to the scan + dependencies: [all_deps, libeom], + install: true, + ) endif |