1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-09-28 15:08:51 +00:00

Fixing syntax error

This commit is contained in:
Carles Fernandez 2015-07-23 00:23:47 +02:00
parent ffef40ecb6
commit 3a0a9d83fa

View File

@ -5,11 +5,11 @@ find_path(USB_INCLUDE_DIR NAMES usb.h
/usr/local/include
)
if(NOT USB_INCLUDE_DIR_FOUND)
if(NOT USB_INCLUDE_DIR)
message(STATUS "libusb has not been found.")
message(STATUS "You can install it by 'sudo apt-get install libusb-dev' ")
message(FATAL_ERROR "libusb is required for building gr-gn3s")
endif(NOT USB_INCLUDE_DIR_FOUND)
endif(NOT USB_INCLUDE_DIR)
INCLUDE(FindPkgConfig)