17 lines
335 B
CMake
17 lines
335 B
CMake
add_library(node_ops STATIC)
|
|
target_sources(node_ops
|
|
PRIVATE
|
|
node_ops_ctl.cc)
|
|
target_include_directories(node_ops
|
|
PUBLIC
|
|
${CMAKE_SOURCE_DIR})
|
|
target_link_libraries(node_ops
|
|
PUBLIC
|
|
utils
|
|
Seastar::seastar
|
|
PRIVATE
|
|
service)
|
|
|
|
check_headers(check-headers node_ops
|
|
GLOB_RECURSE ${CMAKE_CURRENT_SOURCE_DIR}/*.hh)
|