Act on INSTALL_PYTHON_EXAMPLES
This commit is contained in:
@@ -22,6 +22,10 @@ if(ANDROID AND BUILD_ANDROID_EXAMPLES)
|
|||||||
add_subdirectory(android)
|
add_subdirectory(android)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(INSTALL_PYTHON_EXAMPLES)
|
||||||
|
add_subdirectory(python2)
|
||||||
|
endif()
|
||||||
|
|
||||||
#
|
#
|
||||||
# END OF BUILD CASE 1: Build samples with library sources
|
# END OF BUILD CASE 1: Build samples with library sources
|
||||||
#
|
#
|
||||||
|
6
samples/python2/CMakeLists.txt
Normal file
6
samples/python2/CMakeLists.txt
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
if(INSTALL_PYTHON_EXAMPLES)
|
||||||
|
file(GLOB install_list *.py )
|
||||||
|
install(FILES ${install_list}
|
||||||
|
DESTINATION ${OPENCV_SAMPLES_SRC_INSTALL_PATH}/python2
|
||||||
|
PERMISSIONS OWNER_READ GROUP_READ WORLD_READ COMPONENT samples)
|
||||||
|
endif()
|
Reference in New Issue
Block a user