summaryrefslogtreecommitdiff
path: root/src/components/protocol/CMakeLists.txt
blob: 2459bbc49313249abb6f5a625a91be49c44c5d57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
include_directories(
  ./include
  ${APR_INCLUDE_DIRECTORY}
)

set(SOURCES
  ./src/raw_message.cc
  ./src/service_type.cc
  ./src/message_priority.cc
  ./src/rpc_type.cc
)

add_library(ProtocolLibrary ${SOURCES})
target_link_libraries(ProtocolLibrary Utils)