CMakeLists.txt 746 字节
Newer Older
J
jinhai 已提交
1 2 3 4 5 6 7
#-------------------------------------------------------------------------------
# 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"
J
jinhai 已提交
8
        "${VECWISE_THIRD_PARTY_BUILD}/lib"
J
jinhai 已提交
9 10 11
)

set(unittest_srcs
J
jinhai 已提交
12
        ${CMAKE_CURRENT_SOURCE_DIR}/vecwise_test.cpp ${VECWISE_THIRD_PARTY_BUILD}/include/easylogging++.cc)
J
jinhai 已提交
13 14

set(unittest_libs
J
jinhai 已提交
15 16
        gtest_main
        gmock_main
J
jinhai 已提交
17 18
        pthread)

G
groot 已提交
19
add_subdirectory(cache)
X
xj.lin 已提交
20
add_subdirectory(log)
G
groot 已提交
21
add_subdirectory(db)
X
xj.lin 已提交
22
add_subdirectory(faiss_wrapper)