Skip to content

Commit

Permalink
fix: fix doxygen path on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Sep 16, 2021
1 parent 183ba91 commit 440e628
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/doxygen/doxygen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ export async function setupDoxygen(version: string | undefined, _setupCppDir: st
await setupChocoPack("graphviz", version)
await setupChocoPack("doxygen.install", version)
addPath("C:\\Program Files\\Graphviz\\bin")
addPath("C:\\Program Files\\doxygen\\bin")
return undefined
const binDir = "C:\\Program Files\\doxygen\\bin"
addPath(binDir)
return { binDir }
}
case "darwin": {
setupBrewPack("graphviz", version)
Expand Down

0 comments on commit 440e628

Please sign in to comment.