Fixed SDRdaemon and SDRdaemonFEC builds so that they are included only if dependent libraries are found. This fixes issue #9

pull/27/head
f4exb 2016-11-21 17:48:30 +01:00
rodzic 60925ea84b
commit 7c8efb046c
2 zmienionych plików z 15 dodań i 8 usunięć

Wyświetl plik

@ -22,6 +22,14 @@ FIND_LIBRARY(LZ4_LIBRARIES
/usr/lib
)
if (LZ4_LIBRARIES AND LZ4_INCLUDE_DIRS)
set(LIBLZ4_FOUND TRUE CACHE INTERNAL "liblz4 found")
message(STATUS "Found liblz4: ${LZ4_INCLUDE_DIRS}, ${LZ4_LIBRARIES}")
else (LZ4_LIBRARIES AND LZ4_INCLUDE_DIRS)
set(LIBLZ4_FOUND FALSE CACHE INTERNAL "liblz4 found")
message(STATUS "liblz4 not found")
endif (LZ4_LIBRARIES AND LZ4_INCLUDE_DIRS)
INCLUDE(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(LZ4 DEFAULT_MSG LZ4_LIBRARIES LZ4_INCLUDE_DIRS)
MARK_AS_ADVANCED(LZ4_LIBRARIES LZ4_INCLUDE_DIRS)

Wyświetl plik

@ -50,15 +50,16 @@ else(LIBUSB_FOUND AND LIBMIRISDR_FOUND)
message(STATUS "LibMiriSDR NOT found")
endif(LIBUSB_FOUND AND LIBMIRISDR_FOUND)
#find_package(LibNANOMSG)
#if(LIBNANOMSG_FOUND)
# add_subdirectory(sdrdaemon)
#endif(LIBNANOMSG_FOUND)
find_package(LZ4)
find_package(LibNANOMSG)
if(LIBNANOMSG_FOUND AND LIBLZ4_FOUND)
add_subdirectory(sdrdaemon)
endif(LIBNANOMSG_FOUND AND LIBLZ4_FOUND)
find_package(CM256cc)
if(CM256CC_FOUND)
if(CM256CC_FOUND AND LIBNANOMSG_FOUND)
add_subdirectory(sdrdaemonfec)
endif(CM256CC_FOUND)
endif(CM256CC_FOUND AND LIBNANOMSG_FOUND)
if (BUILD_DEBIAN)
add_subdirectory(sdrdaemonfec)
@ -68,7 +69,5 @@ if (BUILD_DEBIAN)
add_subdirectory(bladerf)
endif (BUILD_DEBIAN)
add_subdirectory(filesource)
add_subdirectory(sdrdaemon)