CMakeLists.txt 271 字节
Newer Older
H
refact  
Hongze Cheng 已提交
1 2 3 4 5 6
aux_source_directory(src COMMON_SRC)
add_library(common ${COMMON_SRC})
target_include_directories(
    common
    PUBLIC "${CMAKE_SOURCE_DIR}/include/common"
    PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/inc"
S
Shengliang Guan 已提交
7 8 9 10 11
)
target_link_libraries(
    common
    PUBLIC os
    PUBLIC util
H
refact  
Hongze Cheng 已提交
12
)