CMakeLists.txt 256 Bytes
Newer Older
xuxzh1's avatar
update  
xuxzh1 committed
1
2
3
4
5
6
7
8
9
10
11
message(STATUS "Using RPC backend")

add_library(ggml-rpc
            ggml-rpc.cpp)

target_link_libraries(ggml-rpc PRIVATE ggml-base)
target_include_directories(ggml-rpc PRIVATE . ..)

if (WIN32)
    target_link_libraries(ggml-rpc PRIVATE ws2_32)
endif()