We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9b9bb2 commit 2fdedc2Copy full SHA for 2fdedc2
1 file changed
build.ps1
@@ -592,6 +592,12 @@ $opencvArgs = @(
592
"-DZLIB_INCLUDE_DIR=$installIncludeDir",
593
"-DZLIB_LIBRARY_RELEASE=$zlibLib"
594
)
595
+if ($env:OS -eq "win64-arm64") {
596
+ $opencvArgs += @(
597
+ "-DCPU_BASELINE=NEON",
598
+ "-DCPU_BASELINE_REQUIRE=NEON"
599
+ )
600
+}
601
Invoke-CMakeConfigure $opencvArgs
602
Invoke-CMakeBuild
603
Invoke-CMakeInstall
0 commit comments