diff options
author | Thomas White <taw@physics.org> | 2021-09-29 17:32:49 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2021-09-29 17:32:49 +0200 |
commit | 607fbf5990cf501f5563d9f0ce9ee5edbce2981d (patch) | |
tree | 7dd9c97631f28c9e6cf521b24e69db7c778bc2dc | |
parent | 76bb6a3f5da54b41555b25e7cd6ae8aa7c53654c (diff) |
Doxygen: Exclude datatemplate_priv.h and uthash.h
-rw-r--r-- | libcrystfel/doc/Doxyfile.in | 2 | ||||
-rw-r--r-- | libcrystfel/meson.build | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/libcrystfel/doc/Doxyfile.in b/libcrystfel/doc/Doxyfile.in index 9a186860..16d4280f 100644 --- a/libcrystfel/doc/Doxyfile.in +++ b/libcrystfel/doc/Doxyfile.in @@ -897,7 +897,7 @@ RECURSIVE = NO # Note that relative paths are relative to the directory from which doxygen is # run. -EXCLUDE = +EXCLUDE = @DT_PRIV@ @UTHASH@ # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded diff --git a/libcrystfel/meson.build b/libcrystfel/meson.build index 05c80473..3f96d008 100644 --- a/libcrystfel/meson.build +++ b/libcrystfel/meson.build @@ -182,6 +182,8 @@ if doxygen.found() doc_data.set('INDEX_MD', join_paths(meson.current_source_dir(), 'doc/index.md')) doc_data.set('CODING_MD', join_paths(meson.current_source_dir(), 'doc/coding.md')) doc_data.set('OUTPUT_DIR', join_paths(meson.current_build_dir(), 'docs')) + doc_data.set('DT_PRIV', join_paths(meson.current_source_dir(), 'src/datatemplate_priv.h')) + doc_data.set('UTHASH', join_paths(meson.current_source_dir(), 'src/uthash.h')) doc_data.set('VERSION', meson.project_version()) doc_data.set('API_REVISION', libcrystfel_api_version) |