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 58
58
$doxyfile = Get-Content Doxyfile -Raw
59
59
$doxyfile = $doxyfile -replace 'INPUT\s*=\s*/cpp_tutorials/src', 'INPUT = src'
60
60
$doxyfile = $doxyfile -replace 'OUTPUT_DIRECTORY\s*=\s*\.', 'OUTPUT_DIRECTORY = docs'
61
+ $doxyfile = $doxyfile -replace '/cpp_tutorials/docs', 'docs'
61
62
$doxyfile = $doxyfile -replace 'OUTPUT_TEXT_DIRECTION\s*=\s*None', '# OUTPUT_TEXT_DIRECTION = None'
62
63
$doxyfile = $doxyfile -replace 'HTML_TIMESTAMP\s*=\s*NO', '# HTML_TIMESTAMP = NO'
63
64
$doxyfile = $doxyfile -replace 'FORMULA_TRANSPARENT\s*=\s*YES', '# FORMULA_TRANSPARENT = YES'
70
71
$doxyfile = $doxyfile -replace 'DOT_FONTSIZE\s*=\s*10', '# DOT_FONTSIZE = 10'
71
72
$doxyfile = $doxyfile -replace 'DOT_TRANSPARENT\s*=\s*NO', '# DOT_TRANSPARENT = NO'
72
73
$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'
74
75
75
76
# Write updated Doxyfile
76
77
$doxyfile | Out-File -FilePath Doxyfile.windows -Encoding UTF8
You can’t perform that action at this time.
0 commit comments