milvus/internal/core/unittest/CMakeLists.txt
FluorineDog f47fc7fef1 Using std::string instead of char * for PlaceholderGroup
Signed-off-by: FluorineDog <guilin.gou@zilliz.com>
2020-11-13 19:37:59 +08:00

27 lines
597 B
CMake

enable_testing()
include_directories(${CMAKE_HOME_DIRECTORY}/src)
include_directories(${CMAKE_HOME_DIRECTORY}/src/index/knowhere)
set(MILVUS_TEST_FILES
test_naive.cpp
test_segcore.cpp
test_concurrent_vector.cpp
test_c_api.cpp
test_indexing.cpp
test_query.cpp
test_expr.cpp
)
add_executable(all_tests
${MILVUS_TEST_FILES}
)
target_link_libraries(all_tests
gtest
gtest_main
milvus_segcore
knowhere
log
pthread
)
install (TARGETS all_tests DESTINATION unittest)