mirror of
https://github.com/opencv/opencv.git
synced 2024-12-04 08:49:14 +08:00
Merge pull request #14793 from mshabunin:fix-plugin-install
This commit is contained in:
commit
6389303c1c
@ -29,7 +29,12 @@ function(ocv_create_builtin_videoio_plugin name target)
|
|||||||
CXX_STANDARD 11
|
CXX_STANDARD 11
|
||||||
CXX_VISIBILITY_PRESET hidden
|
CXX_VISIBILITY_PRESET hidden
|
||||||
)
|
)
|
||||||
install(TARGETS ${name} LIBRARY DESTINATION ${OPENCV_LIB_INSTALL_PATH} COMPONENT plugins OPTIONAL)
|
|
||||||
|
if(WIN32)
|
||||||
|
install(TARGETS ${name} OPTIONAL LIBRARY DESTINATION ${OPENCV_BIN_INSTALL_PATH} COMPONENT plugins)
|
||||||
|
else()
|
||||||
|
install(TARGETS ${name} OPTIONAL LIBRARY DESTINATION ${OPENCV_LIB_INSTALL_PATH} COMPONENT plugins)
|
||||||
|
endif()
|
||||||
|
|
||||||
add_dependencies(opencv_videoio_plugins ${name})
|
add_dependencies(opencv_videoio_plugins ${name})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user