From 9dbcc8eb45bf8863261599962c799b1de3557d14 Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Fri, 10 May 2019 12:39:49 -0700 Subject: [PATCH] Added dynamic library to install section of CMakeLists.txt --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3a2fb..add188e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -515,3 +515,6 @@ install (TARGETS ${STATIC_LIB_NAME} ARCHIVE DESTINATION lib PUBLIC_HEADER DESTINATION include ) +install (TARGETS ${DYNAMIC_LIB_NAME} + LIBRARY DESTINATION lib +)