mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-06 19:02:18 +08:00
25 lines
715 B
CMake
25 lines
715 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(../../include)
|
|
|
|
link_directories(${CMAKE_BINARY_DIR})
|
|
|
|
add_executable(thrift_sdk_simple
|
|
./main.cpp
|
|
${src_files}
|
|
)
|
|
|
|
target_link_libraries(thrift_sdk_simple
|
|
milvus_thrift_sdk
|
|
pthread
|
|
)
|
|
|
|
install(TARGETS thrift_sdk_simple DESTINATION bin)
|