milvus/cpp/src/CMakeLists.txt
groot dafd5a45cd add cache classes
Former-commit-id: 9bbc325ab6b6a1916801c05e3eb08e356db38299
2019-04-14 16:35:46 +08:00

14 lines
566 B
CMake

#-------------------------------------------------------------------------------
# Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved
# Unauthorized copying of this file, via any medium is strictly prohibited.
# Proprietary and confidential.
#-------------------------------------------------------------------------------
aux_source_directory(./cache cache_files)
set(vecwise_engine_src
${CMAKE_CURRENT_SOURCE_DIR}/main.cpp
${cache_files}
cache/DataObj.h)
add_library(vecwise_engine SHARED ${vecwise_engine_src})