mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 02:48:45 +08:00
3fd083c987
Former-commit-id: 9b115de1c9d84ed4c790980793fec28169ca7837
21 lines
725 B
CMake
21 lines
725 B
CMake
#-------------------------------------------------------------------------------
|
|
# Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved
|
|
# Unauthorized copying of this file, via any medium is strictly prohibited.
|
|
# Proprietary and confidential.
|
|
#-------------------------------------------------------------------------------
|
|
link_directories(
|
|
"${CMAKE_BINARY_DIR}/lib"
|
|
"${VECWISE_THIRD_PARTY_BUILD}/lib"
|
|
)
|
|
|
|
set(unittest_srcs
|
|
${CMAKE_CURRENT_SOURCE_DIR}/vecwise_test.cpp ${VECWISE_THIRD_PARTY_BUILD}/include/easylogging++.cc)
|
|
|
|
set(unittest_libs
|
|
gtest_main
|
|
gmock_main
|
|
pthread)
|
|
|
|
add_subdirectory(cache)
|
|
add_subdirectory(log)
|
|
add_subdirectory(faiss_wrapper) |