mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 04:38:59 +08:00
28 lines
1011 B
PowerShell
28 lines
1011 B
PowerShell
Param([string]$VcpkgRoot = "")
|
|
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
if (!$VcpkgRoot) {
|
|
$VcpkgRoot = ".."
|
|
}
|
|
|
|
$VcpkgRoot = Resolve-Path $VcpkgRoot
|
|
|
|
if (!(Test-Path "$VcpkgRoot\.vcpkg-root")) {
|
|
throw "Invalid vcpkg instance, did you forget -VcpkgRoot?"
|
|
}
|
|
|
|
Set-Content -Path "$PSScriptRoot\maintainers\portfile-functions.md" -Value "<!-- Run regenerate.ps1 to extract documentation from scripts\cmake\*.cmake -->`n`n# Portfile helper functions"
|
|
|
|
ls "$VcpkgRoot\scripts\cmake\*.cmake" | % {
|
|
$contents = Get-Content $_ `
|
|
| ? { $_ -match "^## |^##`$" } `
|
|
| % { $_ -replace "^## ?","" }
|
|
|
|
if ($contents) {
|
|
Set-Content -Path "$PSScriptRoot\maintainers\$($_.BaseName).md" -Value "$($contents -join "`n")`n`n## Source`n[scripts/cmake/$($_.Name)](https://github.com/Microsoft/vcpkg/blob/master/scripts/cmake/$($_.Name))"
|
|
"- [$($_.BaseName -replace "_","\_")]($($_.BaseName).md)" `
|
|
| Out-File -Enc Ascii -Append -FilePath "$PSScriptRoot\maintainers\portfile-functions.md"
|
|
}
|
|
}
|