CMakeLists.txt 262 字节
Newer Older
S
Shengliang Guan 已提交
1
aux_source_directory(src SUT_SRC)
S
monitor  
Shengliang Guan 已提交
2
add_library(sut STATIC STATIC ${SUT_SRC})
S
Shengliang Guan 已提交
3 4 5 6 7 8 9 10 11 12 13 14
target_link_libraries(
    sut
    PUBLIC dnode
    PUBLIC util
    PUBLIC os
    PUBLIC gtest_main
)

target_include_directories(
    sut
    PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/inc"
)