diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
commit | ed5640d8b587fbcfed7dd7967f3de04b37a76f26 (patch) | |
tree | 7a5f7c6c9d02226d7471cb3cc8fbbf631b415303 /odk/docs/idl/Doxyfile | |
parent | Initial commit. (diff) | |
download | libreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.tar.xz libreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.zip |
Adding upstream version 4:7.4.7.upstream/4%7.4.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'odk/docs/idl/Doxyfile')
-rw-r--r-- | odk/docs/idl/Doxyfile | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/odk/docs/idl/Doxyfile b/odk/docs/idl/Doxyfile new file mode 100644 index 000000000..008ec153b --- /dev/null +++ b/odk/docs/idl/Doxyfile @@ -0,0 +1,48 @@ +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +PROJECT_BRIEF = % +PROJECT_NAME = % +OUTPUT_DIRECTORY = % +STRIP_FROM_PATH = % +INPUT = % +RECURSIVE = YES + +GENERATE_HTML = YES +HTML_OUTPUT = . +HTML_TIMESTAMP = NO +GENERATE_LATEX = NO + +QUIET = % +WARNINGS = YES +WARN_IF_DOC_ERROR = YES +WARN_FORMAT = "$file:$line: $text" + +# Do this only on Windows - the MSI has some ridiculous path name length +# restrictions - but not other platforms because short names are pretty random +SHORT_NAMES = % +# for windows? actually should NOT need this - no case collision in files! +# note this changes filenames (uppercase letters translated to "_lowercase") +#CASE_SENSE_NAMES = NO +# this is bad because the directories have random names... +#CREATE_SUBDIRS = YES +# hmm... not sure if we want the source files in the output? +#SHOW_USED_FILES = NO +#SHOW_FILES = NO + +# ideally everything should be documented, but... +EXTRACT_ALL = YES +# first line is "brief" doc +JAVADOC_AUTOBRIEF = YES +# we want detailed description for everything, starting with "brief" doc +REPEAT_BRIEF = YES +ALWAYS_DETAILED_SEC = YES +# by default members detail sections are prefixed with ns-qualified class +# name which looks like overkill/clutter +HIDE_SCOPE_NAMES = YES + |