diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2016-06-20 16:30:19 -0400 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2016-06-21 13:46:00 -0400 |
commit | e016989a80bb27abf8ef9af1c23d2f7d2f696c30 (patch) | |
tree | af2ad4e9ae8e270f2271f6aef089a302fd6edbe8 /docs/plugins | |
parent | 398f7059fc8eb226f3aa67287ef466328cfd1e94 (diff) |
doc: Add .cpp files to doc parser
Also, complete the list of directory that need to be visited.
Diffstat (limited to 'docs/plugins')
-rw-r--r-- | docs/plugins/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/plugins/Makefile.am b/docs/plugins/Makefile.am index 1806fbb93..ca53eba2f 100644 --- a/docs/plugins/Makefile.am +++ b/docs/plugins/Makefile.am @@ -25,7 +25,7 @@ DOC_SOURCE_DIR = $(top_srcdir)/gst $(top_srcdir)/ext $(top_srcdir)/sys SCAN_OPTIONS= # Extra options to supply to gtkdoc-mkdb. -MKDB_OPTIONS=--sgml-mode --source-suffixes=c,h,cc,m +MKDB_OPTIONS=--sgml-mode --source-suffixes=c,h,cc,cpp,m # Extra options to supply to gtkdoc-fixref. FIXXREF_OPTIONS=--extra-dir=$(GLIB_PREFIX)/share/gtk-doc/html \ @@ -38,7 +38,8 @@ HFILE_GLOB= \ $(top_srcdir)/ext/*/*.hh CFILE_GLOB= \ $(top_srcdir)/gst/*/*.c $(top_srcdir)/ext/*/*.c $(top_srcdir)/sys/*/*.c \ - $(top_srcdir)/ext/*/*.cc $(top_srcdir)/sys/*/*.m + $(top_srcdir)/ext/*/*.cc $(top_srcdir)/ext/*/*.cpp $(top_srcdir)/sys/*/*.cpp \ + $(top_srcdir)/ext/*/*.m $(top_srcdir)/sys/*/*.m # Header files to ignore when scanning. IGNORE_HFILES = |