2019-04-12 12:58:45 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
# 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"
|
2019-04-14 02:23:10 +00:00
|
|
|
"${VECWISE_THIRD_PARTY_BUILD}/lib"
|
2019-04-12 12:58:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set(unittest_srcs
|
2019-04-14 11:46:25 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/vecwise_test.cpp ${VECWISE_THIRD_PARTY_BUILD}/include/easylogging++.cc)
|
2019-04-12 12:58:45 +00:00
|
|
|
|
|
|
|
set(unittest_libs
|
2019-04-14 01:46:12 +00:00
|
|
|
gtest_main
|
|
|
|
gmock_main
|
2019-04-12 12:58:45 +00:00
|
|
|
pthread)
|
|
|
|
|
2019-04-22 09:27:03 +00:00
|
|
|
add_subdirectory(server)
|
2019-04-21 09:01:02 +00:00
|
|
|
add_subdirectory(db)
|
2019-04-16 03:05:38 +00:00
|
|
|
add_subdirectory(faiss_wrapper)
|