Commit | Line | Data |
---|---|---|
de9f01ec | 1 | cmake_minimum_required(VERSION 3.5 FATAL_ERROR) |
39042f17 | 2 | |
019f4846 | 3 | project(example C) |
39042f17 | 4 | |
019f4846 TJ |
5 | find_package(LibFTDI1 NO_MODULE REQUIRED) |
6 | include(${LIBFTDI_USE_FILE}) | |
39042f17 | 7 | |
019f4846 TJ |
8 | add_executable(example main.c) |
9 | target_link_libraries(example ${LIBFTDI_LIBRARIES}) | |
39042f17 | 10 | |
019f4846 TJ |
11 | install(TARGETS example |
12 | DESTINATION bin | |
7828006e | 13 | ) |