CMakeLists.txt 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. ##################################
  2. # DEFINITION OF C++ PROJECT
  3. ##################################
  4. project(cpp-pcapreader)
  5. # Define CMake settings
  6. cmake_minimum_required(VERSION 3.2)
  7. IF(NOT CMAKE_BUILD_TYPE)
  8. SET(CMAKE_BUILD_TYPE "Release")
  9. ENDIF()
  10. IF (CMAKE_BUILD_TYPE MATCHES Debug)
  11. MESSAGE(STATUS "Running Debug configuration.")
  12. ELSEIF (CMAKE_BUILD_TYPE MATCHES Release)
  13. MESSAGE(STATUS "Running Release configuration.")
  14. ENDIF()
  15. SET(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Wall")
  16. SET(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -Wall")
  17. SET(CMAKE_CXX_STANDARD 11)
  18. SET(CMAKE_CXX_STANDARD_REQUIRED ON)
  19. # Add the library source files
  20. SET(SOURCE_FILES cxx/pcap_processor.cpp cxx/pcap_processor.h cxx/statistics.cpp cxx/statistics.h cxx/statistics_db.cpp cxx/statistics_db.h cxx/utilities.h cxx/utilities.cpp)
  21. # Include SQLiteCpp library and build it
  22. option(SQLITECPP_RUN_CPPLINT OFF)
  23. include_directories(SQLiteCpp/include)
  24. add_subdirectory(SQLiteCpp)
  25. # Find libtins library
  26. FIND_LIBRARY(TINS_LIBRARY tins)
  27. IF(TINS_LIBRARY)
  28. MESSAGE(STATUS "Tins library found in ${TINS_LIBRARY}")
  29. ELSE()
  30. MESSAGE(FATAL_ERROR "Tins library not found.")
  31. ENDIF()
  32. FIND_PACKAGE(PythonLibs 3.0 REQUIRED)
  33. IF(PYTHONLIBS_FOUND)
  34. INCLUDE_DIRECTORIES("${PYTHON_INCLUDE_DIRS}")
  35. MESSAGE(STATUS "Python includes found in: " ${PYTHON_INCLUDE_DIRS} )
  36. MESSAGE(STATUS "Python libs found in: " ${PYTHON_LIBRARIES} )
  37. ELSE()
  38. MESSAGE(FATAL_ERROR "Unable to find Python libraries.")
  39. ENDIF()
  40. # Find and configure BOOST library
  41. FIND_PACKAGE(Boost 1.54 QUIET)
  42. IF (Boost_FOUND)
  43. INCLUDE_DIRECTORIES("${Boost_INCLUDE_DIRS}")
  44. MESSAGE(STATUS "Boots includes found in: " ${Boost_INCLUDE_DIRS} )
  45. SET(Boost_USE_STATIC_LIBS OFF)
  46. SET(Boost_USE_MULTITHREADED ON)
  47. SET(Boost_USE_STATIC_RUNTIME OFF)
  48. # Find the boost python 3 component
  49. EXECUTE_PROCESS(COMMAND python3 --version OUTPUT_VARIABLE PY_VERSION)
  50. STRING(REGEX REPLACE "Python ([0-9]+)\.([0-9]+)\.[0-9]+" "python-py\\1\\2" PY_VERSION ${PY_VERSION})
  51. STRING(STRIP ${PY_VERSION} PY_VERSION)
  52. SET(PYTHON_VERSIONS python3 ${PY_VERSION} python-py35 python-py34 python-py33 python-py32)
  53. FOREACH(VERSION ${PYTHON_VERSIONS})
  54. FIND_PACKAGE(Boost COMPONENTS ${VERSION} QUIET)
  55. IF(Boost_FOUND)
  56. MESSAGE(STATUS "Python Boost found as '${VERSION}'.")
  57. BREAK()
  58. ENDIF()
  59. ENDFOREACH(VERSION)
  60. IF(NOT Boost_FOUND)
  61. MESSAGE(FATAL_ERROR "Python Boost component not found.")
  62. ENDIF()
  63. ELSE ()
  64. MESSAGE(FATAL_ERROR "Unable to find the Boost libraries (version 1.54 or higher).")
  65. ENDIF ()
  66. SET_target_properties(sqlite3 PROPERTIES POSITION_INDEPENDENT_CODE ON)
  67. ADD_LIBRARY(pcapreader SHARED ${SOURCE_FILES})
  68. # Libs pthread and dl are prerequisites of SQLiteCpp
  69. TARGET_LINK_LIBRARIES(pcapreader ${Boost_LIBRARIES} "${TINS_LIBRARY}" ${PYTHON_LIBRARIES} SQLiteCpp sqlite3 pthread dl)
  70. IF (APPLE)
  71. SET(CMAKE_SHARED_LIBRARY_SUFFIX ".so")
  72. ENDIF ()
  73. # comment this out to build executable (for development)
  74. #ADD_EXECUTABLE(cpp-pcapreader ${SOURCE_FILES})
  75. #TARGET_LINK_LIBRARIES(cpp-pcapreader ${Boost_LIBRARIES} "${TINS_LIBRARY}" SQLiteCpp sqlite3 pthread dl)