CMakeLists.txt 315 字节
Newer Older
H
more  
hzcheng 已提交
1 2 3 4 5
aux_source_directory(${CMAKE_CURRENT_SOURCE_DIR}/src SOURCE_LIST)

add_library(tsdb STATIC ${SOURCE_LIST})
target_link_libraries(tsdb common)

H
more  
hzcheng 已提交
6 7 8 9 10
target_include_directories(tsdb 
  PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/inc" 
  PUBLIC "${CMAKE_SOURCE_DIR}/src/util/inc"
  PUBLIC "${CMAKE_SOURCE_DIR}/src/os/linux/inc"
  )