Install the runtime file, too

This makes sure the shared library, which is built when compiling with the BUILD_SHARED_LIBS flag, is installed.
This commit is contained in:
Frederik Carlier 2023-10-09 22:42:35 +02:00 committed by Ben Clayton
parent d1eb95c7b6
commit 869caba42c

View File

@ -256,6 +256,7 @@ install(
EXPORT "${CPPDAP_TARGETS_EXPORT_NAME}" EXPORT "${CPPDAP_TARGETS_EXPORT_NAME}"
ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}" ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}"
LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}" LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}"
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
INCLUDES DESTINATION "${CPPDAP_INCLUDE_INSTALL_DIR}" INCLUDES DESTINATION "${CPPDAP_INCLUDE_INSTALL_DIR}"
) )