1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-25 17:28:50 -05:00

PlutoSDR MIMO: fixed wrong reference to BladeRF library in CMakeLists.txt. Fixes #905

This commit is contained in:
f4exb 2021-05-19 16:36:41 +02:00
parent fc035ad8d5
commit 396e701d46

View File

@ -21,7 +21,7 @@ set(plutosdrmimo_HEADERS
include_directories( include_directories(
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client ${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
${CMAKE_SOURCE_DIR}/devices ${CMAKE_SOURCE_DIR}/devices
${LIBBLADERF_INCLUDE_DIRS} ${LIBIIO_INCLUDE_DIR}
) )
if (NOT SERVER_MODE) if (NOT SERVER_MODE)
@ -59,7 +59,7 @@ target_link_libraries(${TARGET_NAME}
sdrbase sdrbase
${TARGET_LIB_GUI} ${TARGET_LIB_GUI}
swagger swagger
${LIBBLADERF_LIBRARIES} ${LIBIIO_LIBRARIES}
plutosdrdevice plutosdrdevice
) )