milvus/cpp/unittest/cache/CMakeLists.txt
groot 41220cb25d add db unittest
Former-commit-id: 5a9e4a10ada30d19fee14b1d2e1d4123ac6dee04
2019-04-21 17:01:02 +08:00

18 lines
619 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_test.cpp)
add_executable(cache_test ${cache_test_src})
target_link_libraries(cache_test ${unittest_libs})