From cc44caccb9902b34a3531633edac911e5b3d65cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Gallou=C3=ABt?= Date: Tue, 19 May 2026 11:53:59 +0000 Subject: [PATCH] Remove STATIC MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Adrien Gallouët --- tools/cli/CMakeLists.txt | 2 +- tools/completion/CMakeLists.txt | 2 +- tools/llama-bench/CMakeLists.txt | 2 +- tools/server/CMakeLists.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/cli/CMakeLists.txt b/tools/cli/CMakeLists.txt index 5e2b37bf9c..6f048b2571 100644 --- a/tools/cli/CMakeLists.txt +++ b/tools/cli/CMakeLists.txt @@ -2,7 +2,7 @@ set(TARGET cli-lib) -add_library(${TARGET} STATIC cli.cpp) +add_library(${TARGET} cli.cpp) target_include_directories(${TARGET} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} ../server) target_link_libraries(${TARGET} PUBLIC server-context llama-common ${CMAKE_THREAD_LIBS_INIT}) diff --git a/tools/completion/CMakeLists.txt b/tools/completion/CMakeLists.txt index 27c88220eb..0d71c06272 100644 --- a/tools/completion/CMakeLists.txt +++ b/tools/completion/CMakeLists.txt @@ -2,7 +2,7 @@ set(TARGET completion-lib) -add_library(${TARGET} STATIC completion.cpp) +add_library(${TARGET} completion.cpp) target_include_directories(${TARGET} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) target_link_libraries(${TARGET} PUBLIC llama-common llama ${CMAKE_THREAD_LIBS_INIT}) diff --git a/tools/llama-bench/CMakeLists.txt b/tools/llama-bench/CMakeLists.txt index 0c73b7d045..a5c3b2e3eb 100644 --- a/tools/llama-bench/CMakeLists.txt +++ b/tools/llama-bench/CMakeLists.txt @@ -2,7 +2,7 @@ set(TARGET bench-lib) -add_library(${TARGET} STATIC llama-bench.cpp) +add_library(${TARGET} llama-bench.cpp) target_include_directories(${TARGET} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) target_link_libraries(${TARGET} PUBLIC llama-common llama ${CMAKE_THREAD_LIBS_INIT}) diff --git a/tools/server/CMakeLists.txt b/tools/server/CMakeLists.txt index 574b662685..838e6a8b12 100644 --- a/tools/server/CMakeLists.txt +++ b/tools/server/CMakeLists.txt @@ -31,7 +31,7 @@ target_link_libraries(${TARGET} PUBLIC llama-common mtmd ${CMAKE_THREAD_LIBS_INI set(TARGET server-lib) -add_library(${TARGET} STATIC +add_library(${TARGET} server.cpp server-http.cpp server-http.h