From ce8041b9e3b5f85fb40e9d848ac9db42ccdcb631 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Wed, 21 Jul 2010 20:08:53 +0200 Subject: [PATCH] FLP import plugin: explicitely link against libzip The improved FLP import plugin requires libzip and we can't rely on the LMMS binary being linked against it, therefore link against it explicitely. --- plugins/flp_import/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/flp_import/CMakeLists.txt b/plugins/flp_import/CMakeLists.txt index 1a2c2c7e4..8f2d05864 100644 --- a/plugins/flp_import/CMakeLists.txt +++ b/plugins/flp_import/CMakeLists.txt @@ -2,4 +2,6 @@ INCLUDE(BuildPlugin) INCLUDE_DIRECTORIES(unrtf) +LINK_LIBRARIES(${ZIP_LIBRARIES}) + BUILD_PLUGIN(flpimport FlpImport.cpp unrtf.cpp FlpImport.h)