mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-30 10:47:35 +02:00
Create build dir
This commit is contained in:
@ -162,9 +162,11 @@ class CxxHandler(BaseHandler):
|
||||
top_dir = os.path.dirname(support_dir)
|
||||
include_dir = os.path.join(top_dir, 'include', 'fmt')
|
||||
self._ns2doxyxml = {}
|
||||
self._doxyxml_dir = os.path.join(top_dir, 'build', 'doxyxml')
|
||||
build_dir = os.path.join(top_dir, 'build')
|
||||
os.mkdirs(build_dir, exists_ok=True)
|
||||
self._doxyxml_dir = os.path.join(build_dir, 'doxyxml')
|
||||
p = Popen(cmd, stdin=PIPE, stdout=PIPE, stderr=STDOUT)
|
||||
out, _ = p.communicate(input=r'''
|
||||
_, _ = p.communicate(input=r'''
|
||||
PROJECT_NAME = fmt
|
||||
GENERATE_XML = YES
|
||||
GENERATE_LATEX = NO
|
||||
|
Reference in New Issue
Block a user