File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 5858 $doxyfile = Get-Content Doxyfile -Raw
5959 $doxyfile = $doxyfile -replace 'INPUT\s*=\s*/cpp_tutorials/src', 'INPUT = src'
6060 $doxyfile = $doxyfile -replace 'OUTPUT_DIRECTORY\s*=\s*\.', 'OUTPUT_DIRECTORY = docs'
61+ $doxyfile = $doxyfile -replace '/cpp_tutorials/docs', 'docs'
6162 $doxyfile = $doxyfile -replace 'OUTPUT_TEXT_DIRECTION\s*=\s*None', '# OUTPUT_TEXT_DIRECTION = None'
6263 $doxyfile = $doxyfile -replace 'HTML_TIMESTAMP\s*=\s*NO', '# HTML_TIMESTAMP = NO'
6364 $doxyfile = $doxyfile -replace 'FORMULA_TRANSPARENT\s*=\s*YES', '# FORMULA_TRANSPARENT = YES'
7071 $doxyfile = $doxyfile -replace 'DOT_FONTSIZE\s*=\s*10', '# DOT_FONTSIZE = 10'
7172 $doxyfile = $doxyfile -replace 'DOT_TRANSPARENT\s*=\s*NO', '# DOT_TRANSPARENT = NO'
7273 $doxyfile = $doxyfile -replace 'HAVE_DOT\s*=\s*YES', 'HAVE_DOT = YES'
73- $doxyfile = $doxyfile -replace 'DOT_PATH\s*=', 'DOT_PATH = C:\\ProgramData\\chocolatey\\bin'
74+ $doxyfile = $doxyfile -replace 'DOT_PATH\s*=.* ', 'DOT_PATH = C:\\ProgramData\\chocolatey\\bin'
7475
7576 # Write updated Doxyfile
7677 $doxyfile | Out-File -FilePath Doxyfile.windows -Encoding UTF8
You can’t perform that action at this time.
0 commit comments