mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 20:39:36 +08:00
13ebbdfcca
Signed-off-by: rain <boyan.wang@zilliz.com>
17 lines
284 B
CMake
17 lines
284 B
CMake
enable_testing()
|
|
find_package(GTest REQUIRED)
|
|
set(MILVUS_TEST_FILES
|
|
test_naive.cpp
|
|
# test_dog_segment.cpp
|
|
test_c_api.cpp
|
|
)
|
|
add_executable(all_tests
|
|
${MILVUS_TEST_FILES}
|
|
)
|
|
|
|
target_link_libraries(all_tests
|
|
gtest
|
|
gtest_main
|
|
milvus_dog_segment
|
|
pthread
|
|
) |