CMakeLists.txt 277 字节
Newer Older
H
refact  
Hongze Cheng 已提交
1 2 3 4 5 6
aux_source_directory(src TQ_SRC)
add_library(tq ${TQ_SRC})
target_include_directories(
    tq
    PUBLIC "${CMAKE_SOURCE_DIR}/include/server/vnode/tq"
    PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/inc"
L
Liu Jicong 已提交
7 8 9
)

target_link_libraries(
L
Liu Jicong 已提交
10 11 12 13
    tq
    PUBLIC wal
    PUBLIC os
    PUBLIC util
L
Liu Jicong 已提交
14
)