mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
481 B
14 lines
481 B
15 years ago
|
# -------------------------------------------------------------------------
|
||
|
# CMake file for Python samples. See root CMakeLists.txt
|
||
|
# -------------------------------------------------------------------------
|
||
|
|
||
|
file(GLOB PYTHON_SAMPLES *.py)
|
||
|
if(NOT WIN32)
|
||
|
install(FILES ${PYTHON_SAMPLES}
|
||
|
DESTINATION share/opencv/samples/python
|
||
|
PERMISSIONS OWNER_READ OWNER_EXECUTE
|
||
|
GROUP_READ GROUP_EXECUTE
|
||
|
WORLD_READ WORLD_EXECUTE)
|
||
|
endif()
|
||
|
|