CMakeLists.txt 236 B

12345678
  1. set(TARGET rpc-server)
  2. add_executable(${TARGET} rpc-server.cpp)
  3. target_link_libraries(${TARGET} PRIVATE ggml)
  4. target_compile_features(${TARGET} PRIVATE cxx_std_17)
  5. if(LLAMA_TOOLS_INSTALL)
  6. install(TARGETS ${TARGET} RUNTIME)
  7. endif()