X-Git-Url: http://developer.intra2net.com/git/?p=libftdi;a=blobdiff_plain;f=ftdipp%2FCMakeLists.txt;h=27fbe8da6b9f48f74e8baf7516dcc998f0d5cf85;hp=27592081c9dba22dc2ce8e61d35cf2c0dbe2a260;hb=3b7ea7ef0840b633a7f79fbb730ed353a6168448;hpb=2d30c7d4bb4f137ce209837206bac7bc4661986a diff --git a/ftdipp/CMakeLists.txt b/ftdipp/CMakeLists.txt index 2759208..27fbe8d 100644 --- a/ftdipp/CMakeLists.txt +++ b/ftdipp/CMakeLists.txt @@ -1,57 +1,68 @@ # Check set(FTDI_BUILD_CPP False PARENT_SCOPE) -# Includes -include_directories( ${CMAKE_CURRENT_BINARY_DIR} - ${CMAKE_CURRENT_SOURCE_DIR} - ${CMAKE_CURRENT_SOURCE_DIR}/../src - ) +option ( FTDIPP "Build C++ binding library libftdi1++" ON ) # Targets -set(cpp_sources ftdi.cpp) -set(cpp_headers ftdi.hpp) +set(cpp_sources ${CMAKE_CURRENT_SOURCE_DIR}/ftdi.cpp CACHE INTERNAL "List of cpp sources" ) +set(cpp_headers ${CMAKE_CURRENT_SOURCE_DIR}/ftdi.hpp CACHE INTERNAL "List of cpp headers" ) + +if (FTDIPP) -# Find Boost -find_package(Boost) -if(Boost_FOUND) -set(FTDI_BUILD_CPP True PARENT_SCOPE) -message(STATUS "Building libftdi++") + if(Boost_FOUND) -# Targets -add_library(ftdi_cpp SHARED ${cpp_sources}) + # Includes + include_directories(BEFORE ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/src) -# Dependencies -target_link_libraries(ftdi_cpp ftdi usb ${BOOST_LIBRARIES}) + include_directories(${Boost_INCLUDE_DIRS}) -# Install -if(${UNIX}) - install( TARGETS ftdi_cpp - LIBRARY DESTINATION lib - COMPONENT sharedlibs - ) - install( FILES ${cpp_headers} - DESTINATION include/${PROJECT_NAME} - COMPONENT headers - ) + set(FTDI_BUILD_CPP True PARENT_SCOPE) + message(STATUS "Building libftdi1++") -endif(${UNIX}) + # Shared library + add_library(ftdipp1 SHARED ${cpp_sources}) -if(${WIN32}) + math(EXPR VERSION_FIXUP "${MAJOR_VERSION} + 1") # Compatiblity with previous releases + set_target_properties(ftdipp1 PROPERTIES VERSION ${VERSION_FIXUP}.${MINOR_VERSION}.0 SOVERSION 3) - install( TARGETS ftdi_cpp - DESTINATION bin - COMPONENT sharedlibs + # Prevent clobbering each other during the build + set_target_properties(ftdipp1 PROPERTIES CLEAN_DIRECT_OUTPUT 1) + + # Dependencies + target_link_libraries(ftdipp1 ftdi1 ${LIBUSB_LIBRARIES} ${BOOST_LIBRARIES}) + + + install ( TARGETS ftdipp1 + RUNTIME DESTINATION bin + LIBRARY DESTINATION lib${LIB_SUFFIX} + ARCHIVE DESTINATION lib${LIB_SUFFIX} ) + + # Static library + if ( STATICLIBS ) + add_library(ftdipp1-static STATIC ${cpp_sources}) + set_target_properties(ftdipp1-static PROPERTIES OUTPUT_NAME "ftdipp1") + set_target_properties(ftdipp1-static PROPERTIES CLEAN_DIRECT_OUTPUT 1) + + install ( TARGETS ftdipp1-static + ARCHIVE DESTINATION lib${LIB_SUFFIX} + COMPONENT staticlibs + ) + endif () - install( FILES ${cpp_headers} - DESTINATION include/${PROJECT_NAME} - COMPONENT headers + install ( FILES ${cpp_headers} + DESTINATION include/${PROJECT_NAME} + COMPONENT headers ) -endif(${WIN32}) + else () + message(STATUS "Boost not found, won't build libftdi1++") + endif () -else(Boost_FOUND) - message(STATUS "Boost not found, won't build libftdi++") -endif(Boost_FOUND) +else () + message(STATUS "Not building libftdi1++") +endif ()