2012-02-03 19:26:49 +08:00
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# CMake file for python support
|
|
|
|
# ----------------------------------------------------------------------------
|
2018-06-07 17:32:48 +08:00
|
|
|
if(DEFINED OPENCV_INITIAL_PASS) # OpenCV build
|
2012-02-03 19:26:49 +08:00
|
|
|
|
2017-01-18 22:14:55 +08:00
|
|
|
if(ANDROID OR APPLE_FRAMEWORK OR WINRT)
|
2018-10-28 21:32:27 +08:00
|
|
|
ocv_module_disable_(python2)
|
|
|
|
ocv_module_disable_(python3)
|
|
|
|
return()
|
2017-01-18 22:14:55 +08:00
|
|
|
elseif(BUILD_opencv_world OR (WIN32 AND CMAKE_BUILD_TYPE STREQUAL "Debug"))
|
|
|
|
if(NOT DEFINED BUILD_opencv_python2)
|
|
|
|
set(__disable_python2 ON)
|
|
|
|
endif()
|
|
|
|
if(NOT DEFINED BUILD_opencv_python3)
|
|
|
|
set(__disable_python3 ON)
|
|
|
|
endif()
|
2012-01-03 21:48:12 +08:00
|
|
|
endif()
|
2013-04-12 21:05:23 +08:00
|
|
|
|
2018-10-28 21:32:27 +08:00
|
|
|
add_subdirectory(bindings)
|
|
|
|
|
2019-03-16 19:50:23 +08:00
|
|
|
add_subdirectory(test)
|
|
|
|
|
2018-10-28 21:32:27 +08:00
|
|
|
if(NOT OPENCV_SKIP_PYTHON_LOADER)
|
|
|
|
include("./python_loader.cmake")
|
2018-12-17 18:39:26 +08:00
|
|
|
message(STATUS "OpenCV Python: during development append to PYTHONPATH: ${CMAKE_BINARY_DIR}/python_loader")
|
2018-10-28 21:32:27 +08:00
|
|
|
endif()
|
|
|
|
|
2017-01-18 22:14:55 +08:00
|
|
|
if(__disable_python2)
|
|
|
|
ocv_module_disable_(python2)
|
|
|
|
endif()
|
|
|
|
if(__disable_python3)
|
|
|
|
ocv_module_disable_(python3)
|
|
|
|
endif()
|
|
|
|
if(__disable_python2 AND __disable_python3)
|
|
|
|
return()
|
2012-01-25 17:04:49 +08:00
|
|
|
endif()
|
2012-01-03 21:48:12 +08:00
|
|
|
|
2014-06-30 04:45:24 +08:00
|
|
|
add_subdirectory(python2)
|
|
|
|
add_subdirectory(python3)
|
2018-06-07 17:32:48 +08:00
|
|
|
|
|
|
|
else() # standalone build
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 2.8.12)
|
|
|
|
include("./standalone.cmake")
|
|
|
|
|
|
|
|
endif()
|