This project contains the FTDI MPSSE libraries, in a format that can be easily used in CMake projects.
In order to use this library add this repository to a sub-folder (e.g. lib/ftdi-mpsse) in your project and then add the following to your CMakeLists.txt
# ...
add_subdirectory(lib/ftdi-mpsse)
# ...
include_directories(${FTDI_MPSSE_INCLUDE_DIRS})
# ...
-
for SPI:
# ... add_executable(foobar ...) target_link_libraries(foobar ftdi-mpsse-spi) # ...
-
for I2C:
# ... add_executable(foobar ...) target_link_libraries(foobar ftdi-mpsse-i2c) # ...
See LICENSE file.
This license applies only to the CMake related files. Other files are copyright of Future Technology Devices International Limited. See each file header for further details.