mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 05:40:30 -04:00
Talking to FTDI's FT2232C, FT232BM and FT245BM type chips including the popular bitbang mode, using libusb. WWW: http://www.intra2net.com/en/developer/libftdi/ Please note that this is an updated version of devel/libftdi, but dependencies require both versions to be available for a while. PR: 191656 Submitted by: uffe@uffe.org
13 lines
594 B
Text
13 lines
594 B
Text
--- examples/CMakeLists.txt.orig 2014-08-03 23:07:13.000000000 +0200
|
|
+++ examples/CMakeLists.txt 2014-08-03 23:08:06.000000000 +0200
|
|
@@ -36,8 +36,8 @@
|
|
if(FTDI_BUILD_CPP)
|
|
if(Boost_FOUND)
|
|
message(STATUS "Building libftdi++ examples.")
|
|
- include_directories(BEFORE ${CMAKE_SOURCE_DIR}/ftdipp
|
|
- ${Boost_INCLUDE_DIRS})
|
|
+ include_directories(BEFORE ${CMAKE_SOURCE_DIR}/ftdipp)
|
|
+ include_directories(AFTER ${Boost_INCLUDE_DIRS})
|
|
|
|
# Target
|
|
add_executable(find_all_pp find_all_pp.cpp)
|