summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMathieu Duponchelle <mathieu@centricular.com>2020-08-06 19:11:34 +0200
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>2020-08-06 17:13:03 +0000
commitfbbacdb856a1ace6917cd5a35c0d6a06b25ad06b (patch)
tree1ef7af5188c8be8d69ccb5c154b7d395f0da57d7 /docs
parent93a54093ec821e9c46fd8cefcb3f06f54777b05e (diff)
docs: include *.cc and *.hh in gst-c-sources
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1491>
Diffstat (limited to 'docs')
-rw-r--r--docs/meson.build4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/meson.build b/docs/meson.build
index 1192e2680..8513b65dd 100644
--- a/docs/meson.build
+++ b/docs/meson.build
@@ -198,8 +198,12 @@ foreach plugin_name: list_plugin_res.stdout().split(':')
gst_c_sources: [
join_paths(root_rel, 'sys/*/*.[ch]'),
join_paths(root_rel, 'sys/*/*.cpp'),
+ join_paths(root_rel, 'sys/*/*.cc'),
+ join_paths(root_rel, 'sys/*/*.hh'),
join_paths(root_rel, 'ext/*/*.[ch]'),
join_paths(root_rel, 'ext/*/*.cpp'),
+ join_paths(root_rel, 'ext/*/*.cc'),
+ join_paths(root_rel, 'ext/*/*.hh'),
join_paths(root_rel, 'gst/*/*.[ch]'),
],
dependencies: [gst_dep, plugins],