Install rpc-server when GGML_RPC is ON. (#17149)

This commit is contained in:
Nicolas B. Pierron
2025-11-11 11:53:59 +01:00
committed by GitHub
parent 2fc392ce35
commit d2d626938a
2 changed files with 6 additions and 0 deletions

View File

@@ -2,3 +2,7 @@ set(TARGET rpc-server)
add_executable(${TARGET} rpc-server.cpp)
target_link_libraries(${TARGET} PRIVATE ggml)
target_compile_features(${TARGET} PRIVATE cxx_std_17)
if(LLAMA_TOOLS_INSTALL)
install(TARGETS ${TARGET} RUNTIME)
endif()