mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-11-14 11:07:10 +00:00
9 lines
236 B
CMake
9 lines
236 B
CMake
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()
|