1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

Disable OpenCV-OpenCL interop sample on Windows in 32-bit builds.

This commit is contained in:
Alexander Smorkalov
2026-06-05 18:22:19 +03:00
parent 527f01449d
commit b7264acb69
+4 -1
View File
@@ -125,7 +125,10 @@ if(WIN32)
endif()
add_subdirectory(dnn)
# add_subdirectory(gpu)
add_subdirectory(opencl)
# HACK: CMake 4.x finds and links wrong OpenCL in 32-bit builds on Windows x64
if(NOT (WIN32 AND X86))
add_subdirectory(opencl)
endif()
add_subdirectory(sycl)
# add_subdirectory(opengl)
add_subdirectory(tapi)