CMakeLists.txt 233 字节
Newer Older
H
refact  
Hongze Cheng 已提交
1 2 3
add_subdirectory(mnode)
add_subdirectory(vnode)
add_subdirectory(qnode)
4
add_subdirectory(dnode)
H
refact  
Hongze Cheng 已提交
5

6
aux_source_directory(. TAOSD_SRC)
H
refact  
Hongze Cheng 已提交
7 8 9
add_executable(taosd ${TAOSD_SRC})
target_link_libraries(
    taosd
S
Shengliang Guan 已提交
10
    PUBLIC dnode
H
Hongze Cheng 已提交
11
    PUBLIC util
H
refact  
Hongze Cheng 已提交
12
)