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-05-29 08:14:15 +00:00
|
|
|
#"${VECWISE_THIRD_PARTY_BUILD}/lib"
|
|
|
|
"${GTEST_PREFIX}/lib/"
|
2019-05-30 06:50:16 +00:00
|
|
|
|
2019-04-12 12:58:45 +00:00
|
|
|
)
|
2019-05-29 08:14:15 +00:00
|
|
|
message(STATUS "GTEST LIB: ${GTEST_PREFIX}/lib")
|
2019-04-12 12:58:45 +00:00
|
|
|
|
|
|
|
set(unittest_srcs
|
2019-05-29 08:14:15 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/vecwise_test.cpp)
|
|
|
|
#${EASYLOGGINGPP_INCLUDE_DIR}/easylogging++.cc)
|
2019-04-12 12:58:45 +00:00
|
|
|
|
|
|
|
set(unittest_libs
|
2019-04-29 04:04:56 +00:00
|
|
|
yaml-cpp
|
2019-05-29 08:14:15 +00:00
|
|
|
gtest
|
|
|
|
gmock
|
2019-04-14 01:46:12 +00:00
|
|
|
gtest_main
|
|
|
|
gmock_main
|
2019-05-29 08:14:15 +00:00
|
|
|
easyloggingpp
|
2019-05-28 09:50:20 +00:00
|
|
|
pthread
|
2019-05-29 08:14:15 +00:00
|
|
|
metrics
|
|
|
|
openblas
|
2019-05-30 06:50:16 +00:00
|
|
|
gfortran
|
|
|
|
prometheus-cpp-pull
|
|
|
|
prometheus-cpp-push
|
|
|
|
prometheus-cpp-core
|
|
|
|
civetweb
|
|
|
|
dl
|
|
|
|
z
|
|
|
|
)
|
2019-04-12 12:58:45 +00:00
|
|
|
|
2019-04-22 09:27:03 +00:00
|
|
|
add_subdirectory(server)
|
2019-04-21 09:01:02 +00:00
|
|
|
add_subdirectory(db)
|
2019-05-08 09:01:11 +00:00
|
|
|
add_subdirectory(faiss_wrapper)
|
2019-05-28 07:33:42 +00:00
|
|
|
add_subdirectory(license)
|
|
|
|
add_subdirectory(metrics)
|