From 0e2451bd6ea5c975e58031b238c36eca9fb618fd Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Mon, 12 May 2014 21:44:26 +0200 Subject: [PATCH] Watsyn: link against libsamplerate Fixes Win32/Win64 build. --- plugins/watsyn/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/watsyn/CMakeLists.txt b/plugins/watsyn/CMakeLists.txt index c5344f7e7..1353b47ca 100644 --- a/plugins/watsyn/CMakeLists.txt +++ b/plugins/watsyn/CMakeLists.txt @@ -1,3 +1,5 @@ INCLUDE(BuildPlugin) +LINK_DIRECTORIES(${SAMPLERATE_LIBRARY_DIRS}) +LINK_LIBRARIES(${SAMPLERATE_LIBRARIES}) BUILD_PLUGIN(watsyn Watsyn.cpp Watsyn.h MOCFILES Watsyn.h EMBEDDED_RESOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.png)