mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
23 lines
676 B
CMake
23 lines
676 B
CMake
#-------------------------------------------------------------------------------
|
|
# Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved
|
|
# Unauthorized copying of this file, via any medium is strictly prohibited.
|
|
# Proprietary and confidential.
|
|
#-------------------------------------------------------------------------------
|
|
|
|
aux_source_directory(src src_files)
|
|
|
|
include_directories(src)
|
|
include_directories(../../megasearch_sdk/include)
|
|
|
|
link_directories(${CMAKE_BINARY_DIR}/megasearch_sdk)
|
|
|
|
add_executable(sdk_simple
|
|
./main.cpp
|
|
${src_files}
|
|
)
|
|
|
|
target_link_libraries(sdk_simple
|
|
megasearch_sdk
|
|
pthread
|
|
)
|