X-Git-Url: http://developer.intra2net.com/git/?a=blobdiff_plain;f=ftdipp%2FCMakeLists.txt;h=fac5bcc4fabab698f931354e33f8f154b7b4636d;hb=928bc100257e5d2bc18a35ede7597da1e9b92ee1;hp=d13071ab78a48d397b7e381724d892537a11bc5f;hpb=0b2d00fcee8dee36c47060e933d4adbefa05a56e;p=libftdi diff --git a/ftdipp/CMakeLists.txt b/ftdipp/CMakeLists.txt index d13071a..fac5bcc 100644 --- a/ftdipp/CMakeLists.txt +++ b/ftdipp/CMakeLists.txt @@ -1,58 +1,47 @@ -# Check -set(FTDI_BUILD_CPP False PARENT_SCOPE) - -# Includes -include_directories( ${CMAKE_CURRENT_BINARY_DIR} - ${CMAKE_CURRENT_SOURCE_DIR} - ${CMAKE_CURRENT_SOURCE_DIR}/../src - ) +# vim: ts=2:sw=2:sts=2 # Targets -set(cpp_sources ftdi.cpp) -set(cpp_headers ftdi.hpp) - -# Find Boost -find_package(Boost) -if(Boost_FOUND) -set(FTDI_BUILD_CPP True PARENT_SCOPE) -message(STATUS "Building libftdi++") - -# Targets -add_library(ftdi_cpp SHARED ${cpp_sources}) - -# Dependencies -target_link_libraries(ftdi_cpp ftdi usb ${BOOST_LIBRARIES}) +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" ) -# Install -if(${UNIX}) - - install( TARGETS ftdi_cpp - LIBRARY DESTINATION lib - COMPONENT sharedlibs - ) - - install( FILES ${cpp_headers} - DESTINATION include/${PROJECT_NAME} - COMPONENT headers - ) - -endif(${UNIX}) - -if(${WIN32}) +# Includes +include_directories(BEFORE ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/src) - install( TARGETS ftdi_cpp - DESTINATION bin - COMPONENT sharedlibs - ) +include_directories(${Boost_INCLUDE_DIRS}) - install( FILES ${cpp_headers} - DESTINATION include/${PROJECT_NAME} - COMPONENT headers - ) +# Shared library +add_library(ftdipp1 SHARED ${cpp_sources}) -endif(${WIN32}) +math(EXPR VERSION_FIXUP "${MAJOR_VERSION} + 1") # Compatibility with previous releases +set_target_properties(ftdipp1 PROPERTIES VERSION ${VERSION_FIXUP}.${MINOR_VERSION}.0 SOVERSION 3) -else(Boost_FOUND) - message(STATUS "Boost not found, won't build libftdi++") -endif(Boost_FOUND) +# 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 + )