mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-06 19:02:18 +08:00
17 lines
379 B
CMake
17 lines
379 B
CMake
add_executable(search search.cpp)
|
|
target_link_libraries(search milvus_sdk pthread)
|
|
install(TARGETS search DESTINATION test)
|
|
|
|
|
|
|
|
|
|
add_executable(insert insert.cpp)
|
|
target_link_libraries(insert milvus_sdk pthread)
|
|
install(TARGETS insert DESTINATION test)
|
|
|
|
|
|
|
|
|
|
add_executable(delete delete.cpp)
|
|
target_link_libraries(delete milvus_sdk pthread)
|
|
install(TARGETS delete DESTINATION test) |