Lines Matching +full:doxyfile +full:- +full:path
32 def load_doxygen_file(doxyfile): argument
33 with open(doxyfile, 'r') as f:
54 parser.add_argument('--builddir',
58 parser.add_argument('--section',
62 parser.add_argument('--output-format',
66 parser.add_argument('--stamp',
74 # Merge the doxyfile with our custom templates
81 os.makedirs(os.path.join(args.builddir, args.output_format))
86 # Run Doxygen with the generated doxyfile
87 cmd = subprocess.Popen(['doxygen', '-'], stdin=subprocess.PIPE)
88 cmd.stdin.write(''.join(conf).encode('utf-8'))
98 manpath = os.path.join(args.builddir, args.output_format)
100 full_path = os.path.join(manpath, filename)