CMakeLists.txt 351 字节
Newer Older
dengyihao's avatar
dengyihao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
add_executable(indexTest "")
target_sources(indexTest
  PRIVATE 
  "indexTests.cpp" 
)
target_include_directories ( indexTest
  PUBLIC
  "${CMAKE_SOURCE_DIR}/include/libs/index" 
  "${CMAKE_CURRENT_SOURCE_DIR}/../inc"
) 
target_link_libraries (indexTest
  os  
  util
  common
  gtest_main
  index
)

add_test(
  NAME index_test
  COMMAND indexTest
)