CMakeLists.txt 1.6 KB
Newer Older
J
jinhai 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#-------------------------------------------------------------------------------
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#   http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.
#-------------------------------------------------------------------------------

X
MS-154  
xj.lin 已提交
20 21 22
include_directories("${CUDA_TOOLKIT_ROOT_DIR}/include")
link_directories("${CUDA_TOOLKIT_ROOT_DIR}/lib64")

S
starlord 已提交
23
set(knowhere_src
X
xiaojun.lin 已提交
24 25 26
        ${MILVUS_ENGINE_SRC}/wrapper/data_transfer.cpp
        ${MILVUS_ENGINE_SRC}/wrapper/vec_impl.cpp
        ${MILVUS_ENGINE_SRC}/wrapper/vec_index.cpp)
X
MS-154  
xj.lin 已提交
27 28

set(helper
29 30 31
        utils.cpp
        ${MILVUS_ENGINE_SRC}/utils/easylogging++.cc
        ${MILVUS_ENGINE_SRC}/utils/easylogging++.h)
X
MS-154  
xj.lin 已提交
32 33 34 35 36 37 38 39

set(knowhere_libs
        knowhere
        cudart
        cublas
        )

add_executable(knowhere_test knowhere_test.cpp ${knowhere_src} ${helper})
X
xj.lin 已提交
40 41
target_link_libraries(knowhere_test ${knowhere_libs} ${unittest_libs})

S
starlord 已提交
42
install(TARGETS knowhere_test DESTINATION unittest)