mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-25 07:41:07 +00:00
Simplify doxygen config
This commit is contained in:
parent
d29ceaf915
commit
fb9ee2ed65
@ -159,19 +159,13 @@ class CxxHandler(BaseHandler):
|
|||||||
p = Popen(cmd, stdin=PIPE, stdout=PIPE, stderr=STDOUT)
|
p = Popen(cmd, stdin=PIPE, stdout=PIPE, stderr=STDOUT)
|
||||||
out, _ = p.communicate(input=r'''
|
out, _ = p.communicate(input=r'''
|
||||||
PROJECT_NAME = fmt
|
PROJECT_NAME = fmt
|
||||||
GENERATE_LATEX = NO
|
|
||||||
GENERATE_MAN = NO
|
|
||||||
GENERATE_RTF = NO
|
|
||||||
CASE_SENSE_NAMES = NO
|
|
||||||
INPUT = {0}
|
|
||||||
QUIET = YES
|
|
||||||
JAVADOC_AUTOBRIEF = NO
|
|
||||||
AUTOLINK_SUPPORT = NO
|
|
||||||
GENERATE_HTML = NO
|
|
||||||
GENERATE_XML = YES
|
GENERATE_XML = YES
|
||||||
|
GENERATE_LATEX = NO
|
||||||
|
GENERATE_HTML = NO
|
||||||
|
INPUT = {0}
|
||||||
XML_OUTPUT = {1}
|
XML_OUTPUT = {1}
|
||||||
ALIASES = "rst=\verbatim embed:rst"
|
QUIET = YES
|
||||||
ALIASES += "endrst=\endverbatim"
|
AUTOLINK_SUPPORT = NO
|
||||||
MACRO_EXPANSION = YES
|
MACRO_EXPANSION = YES
|
||||||
PREDEFINED = _WIN32=1 \
|
PREDEFINED = _WIN32=1 \
|
||||||
__linux__=1 \
|
__linux__=1 \
|
||||||
@ -183,8 +177,6 @@ class CxxHandler(BaseHandler):
|
|||||||
"FMT_BEGIN_NAMESPACE=namespace fmt {{" \
|
"FMT_BEGIN_NAMESPACE=namespace fmt {{" \
|
||||||
"FMT_END_NAMESPACE=}}" \
|
"FMT_END_NAMESPACE=}}" \
|
||||||
"FMT_DOC=1"
|
"FMT_DOC=1"
|
||||||
EXCLUDE_SYMBOLS = fmt::formatter fmt::printf_formatter fmt::arg_join \
|
|
||||||
fmt::basic_format_arg::handle
|
|
||||||
'''.format(
|
'''.format(
|
||||||
' '.join([os.path.join(include_dir, h) for h in headers]),
|
' '.join([os.path.join(include_dir, h) for h in headers]),
|
||||||
self._doxyxml_dir).encode('utf-8'))
|
self._doxyxml_dir).encode('utf-8'))
|
||||||
|
Loading…
Reference in New Issue
Block a user