CMakeLists.txt 687 字节
Newer Older
G
groot 已提交
1 2 3 4 5 6 7 8 9
#-------------------------------------------------------------------------------
# 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)
G
groot 已提交
10
include_directories(../../include)
G
groot 已提交
11

G
groot 已提交
12
link_directories(${CMAKE_BINARY_DIR})
G
groot 已提交
13 14 15 16 17 18 19

add_executable(sdk_simple
        ./main.cpp
        ${src_files}
        )

target_link_libraries(sdk_simple
G
groot 已提交
20
        milvus_sdk
G
groot 已提交
21 22
        pthread
        )
23 24

install(TARGETS sdk_simple DESTINATION bin)