Support for UHD SDR interface

This commit is contained in:
Andreas Eversberg
2017-01-04 14:22:24 +01:00
parent b30b61282c
commit 57993e3e48
12 changed files with 412 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
AUTOMAKE_OPTIONS = subdir-objects
AM_CPPFLAGS = -Wall -Wextra -g $(all_includes)
AM_CPPFLAGS = -Wall -Wextra -g $(all_includes) $(UHD_CFLAGS)
noinst_LIBRARIES = libcommon.a
@@ -33,3 +33,10 @@ libcommon_a_SOURCES += \
../common/sdr.c
endif
if HAVE_UHD
AM_CPPFLAGS += -DHAVE_UHD
libcommon_a_SOURCES += \
../common/uhd.c
endif