1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-21 19:33:03 +04:00

Merge pull request #29268 from asmorkalov:as/disable_ocl_imterop_sample_4.x

Disable OpenCV-OpenCL interop sample for now 4.x
This commit is contained in:
Alexander Smorkalov
2026-06-08 17:03:23 +03:00
committed by GitHub
parent 0397596e17
commit 6f29af625b
+6
View File
@@ -25,7 +25,10 @@ add_subdirectory(java/tutorial_code)
add_subdirectory(dnn)
add_subdirectory(gpu)
add_subdirectory(tapi)
# HACK: CMake 4.x finds and links wrong OpenCL in 32-bit builds on Windows x64
if(NOT (WIN32 AND CMAKE_SIZEOF_VOID_P EQUAL 4))
add_subdirectory(opencl)
endif()
add_subdirectory(sycl)
if(WIN32 AND HAVE_DIRECTX)
add_subdirectory(directx)
@@ -128,7 +131,10 @@ if(WIN32)
endif()
add_subdirectory(dnn)
# add_subdirectory(gpu)
# HACK: CMake 4.x finds and links wrong OpenCL in 32-bit builds on Windows x64
if(NOT (WIN32 AND CMAKE_SIZEOF_VOID_P EQUAL 4))
add_subdirectory(opencl)
endif()
add_subdirectory(sycl)
# add_subdirectory(opengl)
# add_subdirectory(openvx)