mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 03:30:34 +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()
|
|
|