mirror of
https://github.com/opencv/opencv.git
synced 2026-07-28 14:53:03 +04:00
cdb7b83741
filterout all CUDA related headers from python module include headers
17 lines
449 B
CMake
17 lines
449 B
CMake
# ----------------------------------------------------------------------------
|
|
# CMake file for python support
|
|
# ----------------------------------------------------------------------------
|
|
|
|
if(WIN32 AND CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
ocv_module_disable(python2)
|
|
ocv_module_disable(python3)
|
|
endif()
|
|
|
|
if(ANDROID OR IOS)
|
|
ocv_module_disable(python2)
|
|
ocv_module_disable(python3)
|
|
endif()
|
|
|
|
add_subdirectory(python2)
|
|
add_subdirectory(python3)
|