Skip to content
Snippets Groups Projects
Commit d5731ba1 authored by Sergi Hernandez's avatar Sergi Hernandez
Browse files

Minor change in the CMakeLists.txt file. The name of the library was not...

Minor change in the CMakeLists.txt file. The name of the library was not properly set and the search for it in the system always failed, wich lead to installation errors
parent c5acdc8b
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ SET(ftdi_local_dir ${CMAKE_SOURCE_DIR}/tools/libftd2) ...@@ -4,7 +4,7 @@ SET(ftdi_local_dir ${CMAKE_SOURCE_DIR}/tools/libftd2)
FIND_PATH(FTDI_INCLUDE_DIR ${ftdi_headers} /usr/include/ /usr/local/include/) FIND_PATH(FTDI_INCLUDE_DIR ${ftdi_headers} /usr/include/ /usr/local/include/)
FIND_LIBRARY(FTDI_LIBRARY FIND_LIBRARY(FTDI_LIBRARY
NAMES ${ftd2xx} NAMES ${ftdi_libs}
PATHS /usr/lib /usr/local/lib) PATHS /usr/lib /usr/local/lib)
IF(FTDI_INCLUDE_DIR AND FTDI_LIBRARY) IF(FTDI_INCLUDE_DIR AND FTDI_LIBRARY)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment