mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2024-11-04 15:41:19 +00:00
86a8f3ae22
Since we will introduce another type of plugin for the policy engine we want to have each plugin type in separate directories. We also have to adjust: - plugin search directories - po file location - update paths for calls-doc target
62 lines
2.6 KiB
Meson
62 lines
2.6 KiB
Meson
if get_option('gtk_doc')
|
|
|
|
subdir('xml')
|
|
|
|
glib_prefix = dependency('glib-2.0').get_variable(pkgconfig : 'prefix')
|
|
glib_docpath = join_paths(glib_prefix, 'share', 'gtk-doc', 'html')
|
|
docpath = join_paths(get_option('datadir'), 'gtk-doc', 'html')
|
|
|
|
# only build the shared library for gtk-doc
|
|
calls_vala_doc_lib = library('calls-vala-doc',
|
|
calls_vala_sources,
|
|
dependencies: calls_vala_deps)
|
|
calls_doc_lib = library('calls-doc',
|
|
[calls_sources, gdbofono_src],
|
|
include_directories: calls_includes,
|
|
link_with: calls_vala_doc_lib,
|
|
dependencies: calls_deps)
|
|
calls_doc_deps = declare_dependency(sources: [calls_sources, calls_vala_sources],
|
|
include_directories: calls_includes,
|
|
link_with: [calls_doc_lib, calls_vala_doc_lib],
|
|
dependencies: [calls_deps, calls_vala_deps])
|
|
|
|
gnome.gtkdoc('calls',
|
|
main_xml: 'calls-docs.xml',
|
|
src_dir: [
|
|
join_paths(meson.project_source_root(), 'src'),
|
|
join_paths(meson.project_build_root(), 'src'),
|
|
join_paths(meson.project_build_root(), 'src/dbus'),
|
|
join_paths(meson.project_build_root(), 'plugins/provider/ofono/libgdbofono'),
|
|
],
|
|
dependencies: calls_doc_deps,
|
|
scan_args: [
|
|
'--rebuild-types',
|
|
],
|
|
fixxref_args: [
|
|
'--html-dir=@0@'.format(docpath),
|
|
'--extra-dir=@0@'.format(join_paths(glib_docpath, 'glib')),
|
|
'--extra-dir=@0@'.format(join_paths(glib_docpath, 'gobject')),
|
|
'--extra-dir=@0@'.format(join_paths(glib_docpath, 'gio')),
|
|
'--extra-dir=@0@'.format(join_paths(glib_docpath, 'gi')),
|
|
'--extra-dir=@0@'.format(join_paths(glib_docpath, 'gtk3')),
|
|
],
|
|
install_dir: 'calls',
|
|
install: true)
|
|
|
|
endif
|
|
|
|
rst2man = find_program('rst2man', 'rst2man.py', required: false)
|
|
if get_option('manpages') and not rst2man.found()
|
|
error('No rst2man found, but man pages were explicitly enabled')
|
|
endif
|
|
|
|
if get_option('manpages') and rst2man.found()
|
|
custom_target('man-gnome-calls',
|
|
input: 'gnome-calls.rst',
|
|
output: 'gnome-calls.1',
|
|
command: [rst2man, '@INPUT@'],
|
|
capture: true,
|
|
install: true,
|
|
install_dir: get_option('mandir') / 'man1',
|
|
)
|
|
endif
|