CMakeLists.txt 318 字节
Newer Older
S
Shengliang Guan 已提交
1
aux_source_directory(src BNODE_SRC)
S
monitor  
Shengliang Guan 已提交
2
add_library(bnode STATIC ${BNODE_SRC})
S
Shengliang Guan 已提交
3 4
target_include_directories(
    bnode
wafwerar's avatar
wafwerar 已提交
5
    PUBLIC "${TD_SOURCE_DIR}/include/dnode/bnode"
S
Shengliang Guan 已提交
6 7 8 9 10 11 12 13 14
    private "${CMAKE_CURRENT_SOURCE_DIR}/inc"
)
target_link_libraries(
    bnode
    PRIVATE transport
    PRIVATE os
    PRIVATE common
    PRIVATE util
)