mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-26 11:30:36 +00:00
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
14 lines
248 B
CMake
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)
|