diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-04-05 20:19:02 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-04-05 20:19:02 -0700 |
commit | f8a01ee3095513ddbea0fa53ed6768ae0dbe9913 (patch) | |
tree | 3f35f3fe88713950f1d9edb2cf890135eb7820f2 | |
parent | 5722d5f0dc40f850c517e412e6bb44bdc73c3749 (diff) | |
download | subsurface-f8a01ee3095513ddbea0fa53ed6768ae0dbe9913.tar.gz |
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 <dirk@hohndel.org>
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
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() |