Skip to content

Commit e3442a1

Browse files
committed
fix install on windows
1 parent ec7f119 commit e3442a1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/opencv.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,12 @@ jobs:
8989
9090
- name: Install OpenCV
9191
run: |
92-
cd opencv/build && make install
92+
cd opencv/build
93+
if [[ "${{ matrix.os }}" == "win" ]]; then
94+
cmake --install . --config Release
95+
else
96+
make install
97+
fi
9398
9499
- name: Show Build Artifacts
95100
run: |

0 commit comments

Comments
 (0)