We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efd1806 commit f911d5cCopy full SHA for f911d5c
1 file changed
.github/workflows/build_wheels_windows.yml
@@ -89,7 +89,7 @@ jobs:
89
90
set "OpenBLAS_HOME=%CD%"
91
set "PATH=%OpenBLAS_HOME%\bin;%PATH%"
92
- powershell -Command "$base=Resolve-Path .; $cfg='lib/cmake/openblas/OpenBLASConfig.cmake'; $fullInclude=Join-Path $base 'include' -replace '\\','/'; $fullLib=Join-Path $base 'bin/libopenblas.dll' -replace '\\','/'; (Get-Content $cfg) -replace 'SET\\(OpenBLAS_INCLUDE_DIRS.*?\\)', 'SET(OpenBLAS_INCLUDE_DIRS \"' + $fullInclude + '\")' -replace 'SET\\(OpenBLAS_LIBRARIES.*?\\)', 'SET(OpenBLAS_LIBRARIES \"' + $fullLib + '\")' | Set-Content $cfg"
+ powershell -Command "$base=Resolve-Path .; $fullInclude=($fullIncludePath=Join-Path $base 'include') -replace '\\','/'; $fullLib=($fullLibPath=Join-Path $base 'bin/libopenblas.dll') -replace '\\','/'; $cfg='lib/cmake/openblas/OpenBLASConfig.cmake'; $content=Get-Content $cfg -Raw; $content=$content -replace 'SET\\(OpenBLAS_INCLUDE_DIRS.*?\\)', 'SET(OpenBLAS_INCLUDE_DIRS \"' + $fullInclude + '\")'; $content=$content -replace 'SET\\(OpenBLAS_LIBRARIES.*?\\)', 'SET(OpenBLAS_LIBRARIES \"' + $fullLib + '\")'; Set-Content $cfg $content"
93
type D:\a\opencv-python\opencv-python\openblas\lib\cmake\openblas\OpenBLASConfig.cmake
94
95
0 commit comments