mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-15 12:51:49 -05:00
PlutoSDR input: Debian build
This commit is contained in:
parent
97e665f2f5
commit
7359427156
@ -589,6 +589,7 @@ if (BUILD_DEBIAN)
|
||||
add_subdirectory(libbladerf)
|
||||
add_subdirectory(libmirisdr)
|
||||
add_subdirectory(liblimesuite)
|
||||
add_subdirectory(libiio)
|
||||
endif (BUILD_DEBIAN)
|
||||
|
||||
add_subdirectory(httpserver)
|
||||
|
46
libiio/CMakeLists.txt
Normal file
46
libiio/CMakeLists.txt
Normal file
@ -0,0 +1,46 @@
|
||||
project(iio)
|
||||
|
||||
find_package(LibUSB)
|
||||
|
||||
set(iio_SOURCES
|
||||
${LIBIIOSRC}/backend.c
|
||||
${LIBIIOSRC}/buffer.c
|
||||
${LIBIIOSRC}/channel.c
|
||||
${LIBIIOSRC}/context.c
|
||||
${LIBIIOSRC}/device.c
|
||||
${LIBIIOSRC}/iiod-client.c
|
||||
${LIBIIOSRC}/lock.c
|
||||
${LIBIIOSRC}/scan.c
|
||||
${LIBIIOSRC}/usb.c
|
||||
${LIBIIOSRC}/utilities.c
|
||||
${LIBIIOSRC}/xml.c
|
||||
)
|
||||
|
||||
set(iio_HEADERS
|
||||
${LIBIIOSRC}/debug.h
|
||||
${LIBIIOSRC}/iio.h
|
||||
${LIBIIOSRC}/iiod-client.h
|
||||
${LIBIIOSRC}/iio-lock.h
|
||||
${LIBIIOSRC}/iio-private.h
|
||||
include/iio-config.h
|
||||
)
|
||||
|
||||
include_directories(
|
||||
.
|
||||
${CMAKE_CURRENT_BINARY_DIR}
|
||||
${LIBUSB_INCLUDE_DIR}
|
||||
${LIBIIOSRC}
|
||||
./include
|
||||
)
|
||||
|
||||
add_definitions(-DQT_SHARED)
|
||||
|
||||
add_library(iio SHARED
|
||||
${libiio_SOURCES}
|
||||
)
|
||||
|
||||
target_link_libraries(iio
|
||||
${LIBUSB_LIBRARIES}
|
||||
)
|
||||
|
||||
install(TARGETS iio DESTINATION lib)
|
@ -1,29 +1,29 @@
|
||||
#ifndef IIO_CONFIG_H
|
||||
#define IIO_CONFIG_H
|
||||
|
||||
#define LIBIIO_VERSION_MAJOR 0
|
||||
#define LIBIIO_VERSION_MINOR 10
|
||||
#define LIBIIO_VERSION_GIT "3b288d4"
|
||||
#define LIBIIO_VERSION_MAJOR 0
|
||||
#define LIBIIO_VERSION_MINOR 10
|
||||
#define LIBIIO_VERSION_GIT "3b288d4"
|
||||
|
||||
#define LOG_LEVEL Info_L
|
||||
|
||||
/* #undef WITH_LOCAL_BACKEND */
|
||||
#define WITH_LOCAL_BACKEND
|
||||
#define WITH_XML_BACKEND
|
||||
/* #undef WITH_NETWORK_BACKEND */
|
||||
#define WITH_NETWORK_BACKEND
|
||||
#define WITH_USB_BACKEND
|
||||
/* #undef WITH_SERIAL_BACKEND */
|
||||
/* #undef WITH_MATLAB_BINDINGS_API */
|
||||
#define WITH_MATLAB_BINDINGS_API
|
||||
|
||||
/* #undef WITH_NETWORK_GET_BUFFER */
|
||||
/* #undef WITH_NETWORK_EVENTFD */
|
||||
/* #undef WITH_IIOD_USBD */
|
||||
#define WITH_NETWORK_EVENTFD
|
||||
#define WITH_IIOD_USBD
|
||||
/* #undef WITH_LOCAL_CONFIG */
|
||||
#define HAS_PIPE2
|
||||
#define HAS_STRDUP
|
||||
#define HAS_STRERROR_R
|
||||
#define HAS_NEWLOCALE
|
||||
/* #undef HAS_PTHREAD_SETNAME_NP */
|
||||
/* #undef HAVE_IPV6 */
|
||||
#define HAS_PTHREAD_SETNAME_NP
|
||||
#define HAVE_IPV6
|
||||
/* #undef HAVE_AVAHI */
|
||||
/* #undef NO_THREADS */
|
||||
|
||||
|
30
libiio/includemw/iio-config.h
Normal file
30
libiio/includemw/iio-config.h
Normal file
@ -0,0 +1,30 @@
|
||||
#ifndef IIO_CONFIG_H
|
||||
#define IIO_CONFIG_H
|
||||
|
||||
#define LIBIIO_VERSION_MAJOR 0
|
||||
#define LIBIIO_VERSION_MINOR 10
|
||||
#define LIBIIO_VERSION_GIT "3b288d4"
|
||||
|
||||
#define LOG_LEVEL Info_L
|
||||
|
||||
/* #undef WITH_LOCAL_BACKEND */
|
||||
#define WITH_XML_BACKEND
|
||||
/* #undef WITH_NETWORK_BACKEND */
|
||||
#define WITH_USB_BACKEND
|
||||
/* #undef WITH_SERIAL_BACKEND */
|
||||
/* #undef WITH_MATLAB_BINDINGS_API */
|
||||
|
||||
/* #undef WITH_NETWORK_GET_BUFFER */
|
||||
/* #undef WITH_NETWORK_EVENTFD */
|
||||
/* #undef WITH_IIOD_USBD */
|
||||
/* #undef WITH_LOCAL_CONFIG */
|
||||
#define HAS_PIPE2
|
||||
#define HAS_STRDUP
|
||||
#define HAS_STRERROR_R
|
||||
#define HAS_NEWLOCALE
|
||||
/* #undef HAS_PTHREAD_SETNAME_NP */
|
||||
/* #undef HAVE_IPV6 */
|
||||
/* #undef HAVE_AVAHI */
|
||||
/* #undef NO_THREADS */
|
||||
|
||||
#endif /* IIO_CONFIG_H */
|
@ -45,7 +45,7 @@ HEADERS = $$LIBIIOSRC/debug.h\
|
||||
$$LIBIIOSRC/iiod-client.h\
|
||||
$$LIBIIOSRC/iio-lock.h\
|
||||
$$LIBIIOSRC/iio-private.h\
|
||||
$$PWD\include/iio-config.h
|
||||
$$PWD\includemw/iio-config.h
|
||||
|
||||
CONFIG(MINGW32):LIBS += -LD:\softs\libusb-1.0.20\MinGW32\dll -llibusb-1.0
|
||||
CONFIG(MINGW64):LIBS += -LD:\softs\libusb-1.0.20\MinGW64\dll -llibusb-1.0
|
||||
|
@ -22,7 +22,7 @@ set(plutosdrinput_FORMS
|
||||
|
||||
if (BUILD_DEBIAN)
|
||||
include_directories(
|
||||
.
|
||||
.
|
||||
${CMAKE_CURRENT_BINARY_DIR}
|
||||
${CMAKE_SOURCE_DIR}/devices
|
||||
${LIBIIOSRC}
|
||||
|
Loading…
Reference in New Issue
Block a user