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

add_library(tsdb STATIC ${SOURCE_LIST})
H
more  
hzcheng 已提交
4
target_link_libraries(tsdb common tutil)
H
more  
hzcheng 已提交
5

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"
  )