mirror of
https://github.com/opencv/opencv.git
synced 2024-11-27 12:40:05 +08:00
fix installation layout for debian packages:
Install symlinks to shared libraries as a part of development package,
not runtime package.
It is default behavior for debian packages.
(cherry picked from commit f55c1cc0fb
)
This commit is contained in:
parent
67635c6d65
commit
3cf265992f
@ -617,9 +617,14 @@ macro(ocv_create_module)
|
|||||||
|
|
||||||
ocv_install_target(${the_module} EXPORT OpenCVModules
|
ocv_install_target(${the_module} EXPORT OpenCVModules
|
||||||
RUNTIME DESTINATION ${OPENCV_BIN_INSTALL_PATH} COMPONENT libs
|
RUNTIME DESTINATION ${OPENCV_BIN_INSTALL_PATH} COMPONENT libs
|
||||||
LIBRARY DESTINATION ${OPENCV_LIB_INSTALL_PATH} COMPONENT libs
|
LIBRARY DESTINATION ${OPENCV_LIB_INSTALL_PATH} COMPONENT libs NAMELINK_SKIP
|
||||||
ARCHIVE DESTINATION ${OPENCV_LIB_INSTALL_PATH} COMPONENT dev
|
ARCHIVE DESTINATION ${OPENCV_LIB_INSTALL_PATH} COMPONENT dev
|
||||||
)
|
)
|
||||||
|
get_target_property(_target_type ${the_module} TYPE)
|
||||||
|
if("${_target_type}" STREQUAL "SHARED_LIBRARY")
|
||||||
|
install(TARGETS ${the_module}
|
||||||
|
LIBRARY DESTINATION ${OPENCV_LIB_INSTALL_PATH} COMPONENT dev NAMELINK_ONLY)
|
||||||
|
endif()
|
||||||
|
|
||||||
# only "public" headers need to be installed
|
# only "public" headers need to be installed
|
||||||
if(OPENCV_MODULE_${the_module}_HEADERS AND ";${OPENCV_MODULES_PUBLIC};" MATCHES ";${the_module};")
|
if(OPENCV_MODULE_${the_module}_HEADERS AND ";${OPENCV_MODULES_PUBLIC};" MATCHES ";${the_module};")
|
||||||
|
Loading…
Reference in New Issue
Block a user