mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-02 00:45:30 +08:00
18 lines
622 B
CMake
18 lines
622 B
CMake
#-------------------------------------------------------------------------------
|
|
# Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved
|
|
# Unauthorized copying of this file, via any medium is strictly prohibited.
|
|
# Proprietary and confidential.
|
|
#-------------------------------------------------------------------------------
|
|
include_directories(../../src)
|
|
|
|
aux_source_directory(../../src/cache cache_srcs)
|
|
|
|
set(cache_test_src
|
|
${unittest_srcs}
|
|
${cache_srcs}
|
|
cache_tests.cpp)
|
|
|
|
add_executable(cache_tests ${cache_test_src})
|
|
|
|
target_link_libraries(cache_tests ${unittest_libs})
|