1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-08-05 21:33:47 +00:00

Fix building with libiio but without gnuradio-iio

This commit is contained in:
Carles Fernandez 2018-05-01 08:40:08 +02:00
parent c90ec201f2
commit 966dd699ac
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -46,10 +46,10 @@ if(ENABLE_FMCOMMS2 OR ENABLE_AD9361)
############################################### ###############################################
# FMCOMMS2 based SDR Hardware # FMCOMMS2 based SDR Hardware
############################################### ###############################################
if(IIO_FOUND) if(LIBIIO_FOUND)
set(OPT_SIGNAL_SOURCE_LIB_SOURCES ad9361_manager.cc) set(OPT_SIGNAL_SOURCE_LIB_SOURCES ad9361_manager.cc)
set(OPT_SIGNAL_SOURCE_LIB_HEADERS ad9361_manager.h) set(OPT_SIGNAL_SOURCE_LIB_HEADERS ad9361_manager.h)
endif(IIO_FOUND) endif(LIBIIO_FOUND)
endif(ENABLE_FMCOMMS2 OR ENABLE_AD9361) endif(ENABLE_FMCOMMS2 OR ENABLE_AD9361)
if(ENABLE_FPGA) if(ENABLE_FPGA)