Open Source Computer Vision Library
https://opencv.org/
18 lines
482 B
18 lines
482 B
# ---------------------------------------------------------------------------- |
|
# CMake file for python support |
|
# ---------------------------------------------------------------------------- |
|
|
|
if((WIN32 AND CMAKE_BUILD_TYPE STREQUAL "Debug") |
|
OR BUILD_opencv_world |
|
) |
|
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)
|
|
|