X-Git-Url: http://developer.intra2net.com/git/?p=libftdi;a=blobdiff_plain;f=ftdipp%2FCMakeLists.txt;h=48e5a76becf0ecc4dc24625025eb402ee5eba419;hp=66efc32b595750d7ad460e85a85030820bd09c46;hb=42ece7602ea66377ef2727ab45286c5cb7e9ed52;hpb=b80aee72c93847f79295722315e53fb898b46a27 diff --git a/ftdipp/CMakeLists.txt b/ftdipp/CMakeLists.txt index 66efc32..48e5a76 100644 --- a/ftdipp/CMakeLists.txt +++ b/ftdipp/CMakeLists.txt @@ -1,75 +1,80 @@ # Check set(FTDI_BUILD_CPP False PARENT_SCOPE) -# Includes -include_directories( ${CMAKE_CURRENT_BINARY_DIR} - ${CMAKE_CURRENT_SOURCE_DIR} - ${CMAKE_CURRENT_SOURCE_DIR}/../src - ) - -# 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(ftdipp SHARED ${cpp_sources}) - -# Static library -add_library(ftdipp-static STATIC ${cpp_sources}) -set_target_properties(ftdipp-static PROPERTIES OUTPUT_NAME "ftdipp") - -# Prevent clobbering each other during the build -set_target_properties(ftdipp PROPERTIES CLEAN_DIRECT_OUTPUT 1) -set_target_properties(ftdipp-static PROPERTIES CLEAN_DIRECT_OUTPUT 1) - -# Dependencies -target_link_libraries(ftdipp ftdi ${LIBUSB_LIBRARIES} ${BOOST_LIBRARIES}) - -# Install -if(${UNIX}) - - install( TARGETS ftdipp - LIBRARY DESTINATION lib - COMPONENT sharedlibs - ) - - install( TARGETS ftdipp-static - ARCHIVE DESTINATION lib - COMPONENT staticlibs - ) - - install( FILES ${cpp_headers} - DESTINATION include/${PROJECT_NAME} - COMPONENT headers - ) - -endif(${UNIX}) - -if(${WIN32}) - - install( TARGETS ftdipp - DESTINATION bin - COMPONENT sharedlibs - ) - - install( TARGETS ftdipp-static - DESTINATION bin - COMPONENT staticlibs - ) - - install( FILES ${cpp_headers} - DESTINATION include/${PROJECT_NAME} - COMPONENT headers - ) - -endif(${WIN32}) - -else(Boost_FOUND) - message(STATUS "Boost not found, won't build libftdi++") -endif(Boost_FOUND) +option(FTDIPP "Build C++ binding library libftdi1++" ON) + +if (FTDIPP) + + if(Boost_FOUND) + + # Includes + include_directories(BEFORE ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/src) + + include_directories(${Boost_INCLUDE_DIRS}) + + # Targets + set(cpp_sources ftdi.cpp) + set(cpp_headers ftdi.hpp) + + set(FTDI_BUILD_CPP True PARENT_SCOPE) + message(STATUS "Building libftdi1++") + + # Shared library + add_library(ftdipp1 SHARED ${cpp_sources}) + + math(EXPR VERSION_FIXUP "${MAJOR_VERSION} + 1") # Compatiblity with previous releases + set_target_properties(ftdipp1 PROPERTIES VERSION ${VERSION_FIXUP}.${MINOR_VERSION}.0 SOVERSION 2) + + # Static library + add_library(ftdipp1-static STATIC ${cpp_sources}) + set_target_properties(ftdipp1-static PROPERTIES OUTPUT_NAME "ftdipp1") + + # Prevent clobbering each other during the build + set_target_properties(ftdipp1 PROPERTIES CLEAN_DIRECT_OUTPUT 1) + set_target_properties(ftdipp1-static PROPERTIES CLEAN_DIRECT_OUTPUT 1) + + # Dependencies + target_link_libraries(ftdipp1 ftdi1 ${LIBUSB_LIBRARIES} ${BOOST_LIBRARIES}) + + # Install + if(${UNIX}) + install( TARGETS ftdipp1 + LIBRARY DESTINATION lib${LIB_SUFFIX} + COMPONENT sharedlibs + ) + install( TARGETS ftdipp1-static + ARCHIVE DESTINATION lib${LIB_SUFFIX} + COMPONENT staticlibs + ) + install( FILES ${cpp_headers} + DESTINATION include/${PROJECT_NAME} + COMPONENT headers + ) + endif(${UNIX}) + + if(${WIN32}) + install( TARGETS ftdipp1 + DESTINATION bin + COMPONENT sharedlibs + ) + install( TARGETS ftdipp1-static + DESTINATION bin + COMPONENT staticlibs + ) + install( FILES ${cpp_headers} + DESTINATION include/${PROJECT_NAME} + COMPONENT headers + ) + endif(${WIN32}) + + else(Boost_FOUND) + message(STATUS "Boost not found, won't build libftdi1++") + endif(Boost_FOUND) + +else(FTDIPP) + + message(STATUS "Not building libftdi1++") + +endif(FTDIPP)