Files
scylladb/node_ops/CMakeLists.txt
Kefu Chai 9de00c1c5a build: cmake: add node_ops
node_ops source files was extracted into /node_ops directory in
d0d0ad7aa4, so let's update the building system accordingly.

Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>

Closes scylladb/scylladb#15442
2023-09-18 16:27:02 +03:00

14 lines
248 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)