We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c86786 commit d4f01baCopy full SHA for d4f01ba
extension/BuildPhpExtension/private/Get-LibrariesFromConfig.ps1
@@ -71,7 +71,7 @@ Function Get-LibrariesFromConfig {
71
72
$foundItems = @()
73
$libraryFilesFound = @()
74
- [regex]::Matches($ConfigW32Content, 'CHECK_LIB\(["'']([^"'']+)["'']|["'']([^"'']+.lib)["'']|(\w+\.lib)') | ForEach-Object {
+ [regex]::Matches($ConfigW32Content, 'CHECK_LIB\(["'']([^"'']+)["'']|["'']([^"'']+\.lib)["'']|(\w+\.lib)') | ForEach-Object {
75
$_.Groups[1].Value.Split(';') + ($_.Groups[2].Value -Split '[^\w\.]') + ($_.Groups[3].Value -Split '[^\w\.]') | ForEach-Object {
76
$libraryFilesFound += $_
77
}
0 commit comments