scripts/Windows/install_doxygen.ps1
# https://www.doxygen.nl/download.html Write-Host "Installing Doxygen..." -ForegroundColor Cyan $destPath = 'C:\Tools\Doxygen' if(-not (Test-Path $destPath)) { New-Item $destPath -ItemType directory -Force | Out-Null } $zipPath = "$env:TEMP\doxygen.zip" (New-Object Net.WebClient).DownloadFile('https://doxygen.nl/files/doxygen-1.9.1.windows.bin.zip', $zipPath) 7z x $zipPath -aoa -o"$destPath" Remove-Item $zipPath Add-Path $destPath Add-SessionPath $destPath cmd /c doxygen --version Write-Host "Installed Doxygen" -ForegroundColor Green |