mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
14 lines
No EOL
305 B
CMake
14 lines
No EOL
305 B
CMake
aux_source_directory(src TSDB_SRC)
|
|
add_library(tsdb ${TSDB_SRC})
|
|
target_include_directories(
|
|
tsdb
|
|
PUBLIC "${CMAKE_SOURCE_DIR}/include/server/vnode/tsdb"
|
|
PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/inc"
|
|
)
|
|
target_link_libraries(
|
|
tsdb
|
|
PUBLIC os
|
|
PUBLIC util
|
|
PUBLIC common
|
|
PUBLIC tkv
|
|
) |