CMakeLists.txt 305 字节
Newer Older
H
refact  
Hongze Cheng 已提交
1 2 3 4 5 6
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"
H
refact  
Hongze Cheng 已提交
7
)
S
Shengliang Guan 已提交
8
target_link_libraries(
H
refact  
Hongze Cheng 已提交
9
    tsdb
S
Shengliang Guan 已提交
10
    PUBLIC os
H
more  
Hongze Cheng 已提交
11 12 13
    PUBLIC util
    PUBLIC common
    PUBLIC tkv
H
refact  
Hongze Cheng 已提交
14
)