CMakeLists.txt 314 字节
Newer Older
H
Hongze Cheng 已提交
1 2 3 4 5 6 7 8
aux_source_directory(src TFS_SRC)
add_library(tfs STATIC ${TFS_SRC})
target_include_directories(
  tfs
  PUBLIC "${CMAKE_SOURCE_DIR}/include/libs/tfs"
  PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/inc"
)

S
Shengliang Guan 已提交
9
target_link_libraries(tfs os util common monitor)
S
Shengliang Guan 已提交
10 11 12 13

if(${BUILD_TEST})
    add_subdirectory(test)
endif(${BUILD_TEST})