summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMathieu Duponchelle <mathieu@centricular.com>2019-06-01 01:00:06 +0200
committerMathieu Duponchelle <mathieu@centricular.com>2019-06-01 02:39:20 +0200
commite3e5ccdb087fae3254220ad704cff0c999f55723 (patch)
tree1c646018a9ebe9e17239ae930d9ee03989054718 /docs
parentd98835fdeff36235aabc6f3fb831301905fc640a (diff)
downloadgstreamer-plugins-base-e3e5ccdb087fae3254220ad704cff0c999f55723.tar.gz
docs: unprefix subproject paths
special case for app, renamed to applib to not conflict with the plugin
Diffstat (limited to 'docs')
-rw-r--r--docs/meson.build5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/meson.build b/docs/meson.build
index 95c29552b..7eda411ae 100644
--- a/docs/meson.build
+++ b/docs/meson.build
@@ -111,7 +111,8 @@ foreach lib: libs
if lib.length() >= 4
extra_sources = lib[3]
endif
- libs_doc += [hotdoc.generate_doc('gst-plugins-base-' + name,
+ project_name = name == 'app' ? 'applib': name
+ libs_doc += [hotdoc.generate_doc(project_name,
project_version: api_version,
gi_c_sources: [join_paths('../gst-libs/gst', name, '*.[hc]')] + extra_sources,
gi_sources: gir[0].full_path(),
@@ -133,7 +134,7 @@ if not hotdoc.has_extensions('c-extension')
endif
message('c-extension not found, not building documentation')
else
- libs_doc += [hotdoc.generate_doc('gst-plugins-base-riff',
+ libs_doc += [hotdoc.generate_doc('riff',
project_version: api_version,
c_sources: ['../gst-libs/gst/riff/*.[hc]'],
c_source_filters: libs_excludes,