CMakeLists.txt 244 字节
Newer Older
H
refact  
Hongze Cheng 已提交
1
aux_source_directory(src OS_SRC)
S
monitor  
Shengliang Guan 已提交
2
add_library(os STATIC ${OS_SRC})
H
refact  
Hongze Cheng 已提交
3 4 5 6
target_include_directories(
    os
    PUBLIC "${CMAKE_SOURCE_DIR}/include/os"
    PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/include"
S
Shengliang Guan 已提交
7 8
)
target_link_libraries(
S
monitor  
Shengliang Guan 已提交
9
    os pthread dl rt m
H
refact  
Hongze Cheng 已提交
10
)