Skip to content

Commit 14412bb

Browse files
committed
try with win32
1 parent 6322eaa commit 14412bb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/opencv.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,14 @@ jobs:
7676
- name: Configure OpenCV
7777
run: |
7878
cd opencv && mkdir build && cd build
79+
7980
EXTRA_FLAGS=""
8081
if [[ "${{ matrix.os }}" == "win" && "${{ matrix.arch }}" == "arm64" ]]; then
8182
EXTRA_FLAGS+=" -DWITH_IPP=OFF -DCPU_BASELINE=NEON -A ARM64"
83+
elif [[ "${{ matrix.os }}" == "win" && "${{ matrix.arch }}" == "x86" ]]; then
84+
EXTRA_FLAGS+=" -A Win32"
8285
fi
86+
8387
cmake ${{ env.OPENCV_CMAKE_ARGS }} $EXTRA_FLAGS ..
8488
8589
- name: Build OpenCV

0 commit comments

Comments
 (0)