From 396e701d466aa71104782129301f1333fb14bfd3 Mon Sep 17 00:00:00 2001 From: f4exb Date: Wed, 19 May 2021 16:36:41 +0200 Subject: [PATCH] PlutoSDR MIMO: fixed wrong reference to BladeRF library in CMakeLists.txt. Fixes #905 --- plugins/samplemimo/plutosdrmimo/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/samplemimo/plutosdrmimo/CMakeLists.txt b/plugins/samplemimo/plutosdrmimo/CMakeLists.txt index 358c2fb7d..ac8b6548f 100644 --- a/plugins/samplemimo/plutosdrmimo/CMakeLists.txt +++ b/plugins/samplemimo/plutosdrmimo/CMakeLists.txt @@ -21,7 +21,7 @@ set(plutosdrmimo_HEADERS include_directories( ${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client ${CMAKE_SOURCE_DIR}/devices - ${LIBBLADERF_INCLUDE_DIRS} + ${LIBIIO_INCLUDE_DIR} ) if (NOT SERVER_MODE) @@ -59,7 +59,7 @@ target_link_libraries(${TARGET_NAME} sdrbase ${TARGET_LIB_GUI} swagger - ${LIBBLADERF_LIBRARIES} + ${LIBIIO_LIBRARIES} plutosdrdevice )