Update to 2.0.0 tree from current Fremantle build
[opencv] / samples / swig_python / CMakeLists.txt
1 # -------------------------------------------------------------------------
2 #  CMake file for Python samples. See root CMakeLists.txt
3 # -------------------------------------------------------------------------
4
5 file(GLOB PYTHON_SAMPLES *.py)
6 if(NOT WIN32)
7 install(FILES ${PYTHON_SAMPLES}
8         DESTINATION share/opencv/samples/python
9         PERMISSIONS OWNER_READ OWNER_EXECUTE
10                     GROUP_READ GROUP_EXECUTE
11                     WORLD_READ WORLD_EXECUTE)
12 endif()
13