From f8a01ee3095513ddbea0fa53ed6768ae0dbe9913 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sun, 5 Apr 2015 20:19:02 -0700 Subject: [PATCH] cmake: on Linux install our special marble library If we build our own library, make sure it gets installed as well. Signed-off-by: Dirk Hohndel --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6c1cae29b..d3c2fc7bb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -577,4 +577,7 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Linux") install(DIRECTORY theme DESTINATION share/subsurface) install(FILES ${TRANSLATIONS} DESTINATION share/subsurface/translations) install(TARGETS ${SUBSURFACE_TARGET} DESTINATION bin) + IF(DEFINED LIBMARBLEDEVEL) + install(FILES ${LIBMARBLEDEVEL}/lib/libssrfmarblewidget.so* DESTINATION lib) + ENDIF() ENDIF()