CMakeLists.txt 566 字节
Newer Older
J
jinhai 已提交
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.
#-------------------------------------------------------------------------------

G
groot 已提交
7
aux_source_directory(./cache cache_files)
G
groot 已提交
8

J
jinhai 已提交
9 10
set(vecwise_engine_src
        ${CMAKE_CURRENT_SOURCE_DIR}/main.cpp
G
groot 已提交
11 12
        ${cache_files}
        cache/DataObj.h)
J
jinhai 已提交
13 14

add_library(vecwise_engine SHARED ${vecwise_engine_src})