Skip to content

Commit a34d0a2

Browse files
committed
tests: opencv-module-dnn stays linux+macOS (opencv-m module pkg not windows-enabled yet); compat opencv-dnn keeps windows (fast_gemm dnn — CI-passing)
1 parent ed91c6e commit a34d0a2

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

tests/examples/opencv-module-dnn/mcpp.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,4 @@ opencv = { version = "0.0.6", features = ["dnn"] }
1919
[target.'cfg(macos)'.dependencies]
2020
opencv = { version = "0.0.6", features = ["dnn"] }
2121

22-
# windows: `import opencv.dnn;` on windows-x86_64 (fast_gemm backend, mlas skipped).
23-
[target.'cfg(windows)'.dependencies]
24-
opencv = { version = "0.0.6", features = ["dnn"] }
2522

tests/examples/opencv-module-dnn/tests/opencv_dnn_iface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Linux-only (see mcpp.toml). Not named dnn.cpp (would collide with the dep's
55
// modules/dnn/src/dnn.cpp — #240 family). Import-only (import std + the opencv
66
// modules): no textual headers, matching the ffmpeg-module member convention.
7-
#if defined(__linux__) || defined(__APPLE__) || defined(_WIN32)
7+
#if defined(__linux__) || defined(__APPLE__)
88
import std;
99
import opencv.cv;
1010
import opencv.dnn;

0 commit comments

Comments
 (0)