From: Chris Morgan Date: Wed, 5 Feb 2014 16:19:31 +0000 (-0500) Subject: Correct incorrect initial value for LIBFTDI_STATIC_LIBRARIES, should start with LIBFT... X-Git-Tag: v1.1^0 X-Git-Url: http://developer.intra2net.com/git/?p=libftdi;a=commitdiff_plain;h=refs%2Ftags%2Fv1.1 Correct incorrect initial value for LIBFTDI_STATIC_LIBRARIES, should start with LIBFTDI_STATIC_LIBRARY not LIBFTDI_LIBRARY --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 49e23bc..e8688d4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -187,7 +187,7 @@ set ( LIBFTDI_LIBRARY ftdi1 ) set ( LIBFTDI_LIBRARIES ${LIBFTDI_LIBRARY} ) list ( APPEND LIBFTDI_LIBRARIES ${LIBUSB_LIBRARIES} ) set ( LIBFTDI_STATIC_LIBRARY ftdi1.a ) -set ( LIBFTDI_STATIC_LIBRARIES ${LIBFTDI_LIBRARY} ) +set ( LIBFTDI_STATIC_LIBRARIES ${LIBFTDI_STATIC_LIBRARY} ) list ( APPEND LIBFTDI_STATIC_LIBRARIES ${LIBUSB_LIBRARIES} ) if (FTDI_BUILD_CPP) set ( LIBFTDIPP_LIBRARY ftdi1pp )