mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-08 20:30:06 +00:00
Generate doxyxml in build
This commit is contained in:
parent
1334eedaf5
commit
ea1187f4c8
@ -159,9 +159,10 @@ class CxxHandler(BaseHandler):
|
||||
# Run doxygen.
|
||||
cmd = ['doxygen', '-']
|
||||
doc_dir = Path(__file__).parents[3]
|
||||
include_dir = os.path.join(os.path.dirname(doc_dir), 'include', 'fmt')
|
||||
top_dir = os.path.dirname(doc_dir)
|
||||
include_dir = os.path.join(top_dir, 'include', 'fmt')
|
||||
self._ns2doxyxml = {}
|
||||
self._doxyxml_dir = 'doxyxml'
|
||||
self._doxyxml_dir = os.path.join(top_dir, 'build', 'doxyxml')
|
||||
p = Popen(cmd, stdin=PIPE, stdout=PIPE, stderr=STDOUT)
|
||||
out, _ = p.communicate(input=r'''
|
||||
PROJECT_NAME = fmt
|
||||
|
Loading…
Reference in New Issue
Block a user