summaryrefslogtreecommitdiff
path: root/src/components/protocol_handler/CMakeLists.txt
blob: 5ccfa3bb3d2a7598f7bfedd0d8d6299b80b14826 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
include_directories(
  ./include
  ../utils/include/
  ../connection_handler/include/
  ../config_profile/include/
  ${LOG4CXX_INCLUDE_DIRECTORY}
)

set(SOURCES
    ./src/protocol_handler_impl.cc
    ./src/protocol_packet.cc
    ./src/protocol_payload.cc
)

set(LIBRARIES
  ProtocolLibrary
  Utils
)

add_library(ProtocolHandler ${SOURCES})
target_link_libraries(ProtocolHandler ${LIBRARIES})