mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
10 lines
351 B
CMake
10 lines
351 B
CMake
aux_source_directory(src NODE_UTIL)
|
|
add_library(node_util STATIC ${NODE_UTIL})
|
|
target_include_directories(
|
|
node_util
|
|
PUBLIC "${TD_SOURCE_DIR}/include/dnode/mgmt"
|
|
PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/inc"
|
|
)
|
|
target_link_libraries(
|
|
node_util mnode vnode qnode snode bnode wal sync ${TAOS_NATIVE_LIB_STATIC} tfs monitor monitorfw metrics
|
|
)
|