From 3f1389dc81c9570f7e785d157cd1e779f5246de9 Mon Sep 17 00:00:00 2001 From: f4exb Date: Sat, 5 May 2018 05:28:34 +0200 Subject: [PATCH] Removed sqlite3 dependency --- debian/changelog | 1 + liblimesuite/CMakeLists.txt | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 78ac9df32..56aed61cb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ sdrangel (3.14.5-1) unstable; urgency=medium * DSD demod: allow audio rates integer multiples of 8k other than 48k * Added a benchmark program testing decimators * Optimization of decimators using even/odd technique + * SSB mod: fixed channel unregistration -- Edouard Griffiths, F4EXB Fri, 04 May 2018 20:14:18 +0200 diff --git a/liblimesuite/CMakeLists.txt b/liblimesuite/CMakeLists.txt index 3125d5dad..70589b041 100644 --- a/liblimesuite/CMakeLists.txt +++ b/liblimesuite/CMakeLists.txt @@ -1,7 +1,6 @@ project(limesuite) find_package(LibUSB) -find_package(SQLite3) set(limesuite_SOURCES ${LIBLIMESUITESRC}/src/Logger.cpp @@ -89,7 +88,6 @@ add_library(limesuite SHARED target_link_libraries(limesuite ${LIBUSB_LIBRARIES} - ${SQLITE3_LIBRARIES} ) install(TARGETS limesuite DESTINATION lib)