We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6322eaa commit 14412bbCopy full SHA for 14412bb
.github/workflows/opencv.yml
@@ -76,10 +76,14 @@ jobs:
76
- name: Configure OpenCV
77
run: |
78
cd opencv && mkdir build && cd build
79
+
80
EXTRA_FLAGS=""
81
if [[ "${{ matrix.os }}" == "win" && "${{ matrix.arch }}" == "arm64" ]]; then
82
EXTRA_FLAGS+=" -DWITH_IPP=OFF -DCPU_BASELINE=NEON -A ARM64"
83
+ elif [[ "${{ matrix.os }}" == "win" && "${{ matrix.arch }}" == "x86" ]]; then
84
+ EXTRA_FLAGS+=" -A Win32"
85
fi
86
87
cmake ${{ env.OPENCV_CMAKE_ARGS }} $EXTRA_FLAGS ..
88
89
- name: Build OpenCV
0 commit comments