From 12a3974644c4c28656478702e1f1ed83b3f8a8df Mon Sep 17 00:00:00 2001 From: f4exb Date: Wed, 26 Oct 2016 01:08:39 +0200 Subject: [PATCH] Debian package build: corrected HackRF source build --- plugins/samplesource/hackrf/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/samplesource/hackrf/CMakeLists.txt b/plugins/samplesource/hackrf/CMakeLists.txt index ee8880921..7df804706 100644 --- a/plugins/samplesource/hackrf/CMakeLists.txt +++ b/plugins/samplesource/hackrf/CMakeLists.txt @@ -52,13 +52,13 @@ add_library(inputhackrf SHARED if (BUILD_DEBIAN) target_link_libraries(inputhackrf ${QT_LIBRARIES} - ${LIBHACKRF_LIBRARIES} + hackrf sdrbase ) else (BUILD_DEBIAN) target_link_libraries(inputhackrf ${QT_LIBRARIES} - hackrf + ${LIBHACKRF_LIBRARIES} sdrbase ) endif (BUILD_DEBIAN)