Removed sqlite3 dependency

This commit is contained in:
f4exb 2018-05-05 05:28:34 +02:00
parent 359af254f0
commit 3f1389dc81
2 changed files with 1 additions and 2 deletions

1
debian/changelog vendored
View File

@ -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 <f4exb06@gmail.com> Fri, 04 May 2018 20:14:18 +0200

View File

@ -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)