CMakeLists.txt 1.3 KB
Newer Older
G
groot 已提交
1 2 3 4 5 6
#-------------------------------------------------------------------------------
# Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved
# Unauthorized copying of this file, via any medium is strictly prohibited.
# Proprietary and confidential.
#-------------------------------------------------------------------------------
include_directories(../../src)
G
groot 已提交
7
include_directories(/usr/include)
G
groot 已提交
8

G
groot 已提交
9 10 11
include_directories(/usr/local/cuda/include)
find_library(cuda_library cudart cublas HINTS /usr/local/cuda/lib64)

G
groot 已提交
12
aux_source_directory(../../src/config config_files)
G
groot 已提交
13
aux_source_directory(../../src/cache cache_srcs)
G
groot 已提交
14
aux_source_directory(./ test_srcs)
G
groot 已提交
15

G
groot 已提交
16 17 18
set(require_files
        ../../src/server/VecIdMapper.cpp
        ../../src/server/ServerConfig.cpp
G
groot 已提交
19
        ../../src/utils/CommonUtil.cpp
G
groot 已提交
20
        ../../src/utils/TimeRecorder.cpp
G
groot 已提交
21 22
        )

G
groot 已提交
23
add_executable(server_test
G
groot 已提交
24
        ${unittest_srcs}
G
groot 已提交
25
        ${config_files}
G
groot 已提交
26
        ${cache_srcs}
G
groot 已提交
27
        ${test_srcs}
G
groot 已提交
28
        ${require_files}
G
groot 已提交
29
        )
G
groot 已提交
30

G
groot 已提交
31 32 33 34
set(require_libs
        yaml-cpp
        boost_system
        boost_filesystem
G
groot 已提交
35 36 37 38 39
        pthread
        snappy
        bz2
        z
        rocksdb
G
groot 已提交
40
        faiss
G
groot 已提交
41 42 43
        )

link_libraries(/usr/lib/x86_64-linux-gnu)
G
groot 已提交
44 45 46 47

target_link_libraries(server_test
        ${unittest_libs}
        ${require_libs}
G
groot 已提交
48
        ${cuda_library}
G
groot 已提交
49
        )