From 339444c12aebb6a36a7bc6c18d75a5fcb907fd07 Mon Sep 17 00:00:00 2001 From: Xuan Son Nguyen Date: Thu, 3 Sep 2026 00:50:00 +0200 Subject: [PATCH] nits --- tools/connect/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/connect/CMakeLists.txt b/tools/connect/CMakeLists.txt index 71a2e99654..dd566e2d97 100644 --- a/tools/connect/CMakeLists.txt +++ b/tools/connect/CMakeLists.txt @@ -75,6 +75,11 @@ add_custom_target(${TARGET} ALL VERBATIM ) +# building llama-server should also pull the binary (for convenience) +if (TARGET llama-server) + add_dependencies(llama-server ${TARGET}) +endif() + if (LLAMA_TOOLS_INSTALL) install(PROGRAMS "${LLAMA_CONNECT_OUT_DIR}/${LLAMA_CONNECT_BINARY}" TYPE BIN) endif()