if(NOT BLADERF_FOUND) pkg_check_modules (BLADERF_PKG libbladeRF) find_path(BLADERF_INCLUDE_DIRS NAMES libbladeRF.h PATHS ${BLADERF_PKG_INCLUDE_DIRS} /usr/include /usr/local/include ) find_library(BLADERF_LIBRARIES NAMES bladeRF PATHS ${BLADERF_PKG_LIBRARY_DIRS} /usr/lib /usr/local/lib ) if(BLADERF_INCLUDE_DIRS AND BLADERF_LIBRARIES) CHECK_LIBRARY_EXISTS(bladeRF bladerf_get_board_name BLADERF_LIBRARIES BLADERF_VERSION_OK) if (BLADERF_VERSION_OK) set(BLADERF_FOUND TRUE CACHE INTERNAL "libbladeRF found") message(STATUS "Found libbladeRF: ${BLADERF_INCLUDE_DIRS}, ${BLADERF_LIBRARIES}") else (BLADERF_VERSION_OK) set(BLADERF_FOUND FALSE CACHE INTERNAL "libbladeRF found") message(STATUS "libbladeRF found but not compatible. Upgrade your driver or use SoapySDR.") endif (BLADERF_VERSION_OK) else(BLADERF_INCLUDE_DIRS AND BLADERF_LIBRARIES) set(BLADERF_FOUND FALSE CACHE INTERNAL "libbladeRF found") message(STATUS "libbladeRF not found.") endif(BLADERF_INCLUDE_DIRS AND BLADERF_LIBRARIES) mark_as_advanced(BLADERF_LIBRARIES BLADERF_INCLUDE_DIRS) endif(NOT BLADERF_FOUND)