mirror of
https://github.com/opencv/opencv.git
synced 2024-12-05 01:39:13 +08:00
13 lines
399 B
CMake
13 lines
399 B
CMake
|
# -------------------------------------------------------------------------
|
||
|
# CMake file for Octave samples. See root CMakeLists.txt
|
||
|
# -------------------------------------------------------------------------
|
||
|
|
||
|
file(GLOB OCTAVE_SAMPLES *.m)
|
||
|
|
||
|
if(NOT WIN32)
|
||
|
install(FILES ${OCTAVE_SAMPLES}
|
||
|
DESTINATION share/opencv/samples/octave
|
||
|
PERMISSIONS OWNER_READ GROUP_READ WORLD_READ)
|
||
|
endif()
|
||
|
|