mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 19:50:38 +08:00
7 lines
238 B
CMake
7 lines
238 B
CMake
if(INSTALL_PYTHON_EXAMPLES)
|
|
file(GLOB install_list *.py )
|
|
install(FILES ${install_list}
|
|
DESTINATION ${OPENCV_SAMPLES_SRC_INSTALL_PATH}/python
|
|
PERMISSIONS OWNER_READ GROUP_READ WORLD_READ COMPONENT samples)
|
|
endif()
|