1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 22:14:45 -04:00

Add liblz4 dependency for sdrdaemon plugin

This commit is contained in:
f4exb
2016-01-24 19:26:42 +01:00
parent e4f97e1a1b
commit 1850452601
2 changed files with 34 additions and 0 deletions
@@ -1,5 +1,7 @@
project(sdrdaemon)
find_package(LZ4)
set(sdrdaemon_SOURCES
sdrdaemongui.cpp
sdrdaemoninput.cpp
@@ -40,9 +42,14 @@ add_library(inputsdrdaemon SHARED
${sdrdaemon_FORMS_HEADERS}
)
target_include_directories(inputsdrdaemon PUBLIC
${LZ4_INCLUDE_DIRS}
)
target_link_libraries(inputsdrdaemon
${QT_LIBRARIES}
${LIBUSB_LIBRARIES}
${LZ4_LIBRARIES}
sdrbase
)