diff options
author | Andy Williams <andy@andywilliams.me> | 2017-12-13 18:10:11 +0000 |
---|---|---|
committer | Andy Williams <andy@andywilliams.me> | 2017-12-13 18:10:57 +0000 |
commit | 6f38e42f8e8a876186752f1e82f95e4373090bab (patch) | |
tree | b8791fd5142abc19dc1c6ead29a63c09068052cf /doc | |
parent | ebff6b42efa371daa62fe6a9081f27d6aa0596b3 (diff) | |
download | efl-6f38e42f8e8a876186752f1e82f95e4373090bab.tar.gz |
docs: Remove the Efl namespace from our legacy docs
This means removing bindings from the output too
as they are making the transition over.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Doxyfile.in | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index e2a6742652..7f2db3fce0 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -594,7 +594,6 @@ WARN_LOGFILE = # with spaces. INPUT = @top_srcdir@/src/lib \ - @top_srcdir@/src/bindings \ @top_srcdir@/elm_intro.h \ @srcdir@/index_elm.dox \ @srcdir@/main.dox \ @@ -630,8 +629,7 @@ INPUT_ENCODING = UTF-8 FILE_PATTERNS = *.c \ *.h \ - *.x \ - *.hh + *.x # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. @@ -647,7 +645,8 @@ EXCLUDE = @top_builddir@/src/lib/evas/common \ @top_builddir@/src/lib/evas/cache \ @top_builddir@/src/lib/evas/file \ @top_builddir@/src/lib/evas/cserve2 \ - @top_builddir@/src/lib/evas/include + @top_builddir@/src/lib/evas/include \ + @top_builddir@/src/lib/efl # The EXCLUDE_SYMLINKS tag can be used select whether or not files or @@ -662,7 +661,9 @@ EXCLUDE_SYMLINKS = NO # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* -EXCLUDE_PATTERNS = *_private* +EXCLUDE_PATTERNS = *_private* \ + */efl_* \ + */Efl_* # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the |