server : remove old LLAMA_SERVER_SSL (#16290)

Signed-off-by: Adrien Gallouët <angt@huggingface.co>
This commit is contained in:
Adrien Gallouët
2025-09-27 18:17:08 +02:00
committed by GitHub
parent 3f81b4e91c
commit 234e2ff8ed
4 changed files with 6 additions and 11 deletions

View File

@@ -1,7 +1,5 @@
set(TARGET llama-server)
option(LLAMA_SERVER_SSL "Build SSL support for the server" OFF)
include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR})
if (MINGW)
@@ -37,12 +35,6 @@ target_include_directories(${TARGET} PRIVATE ../mtmd)
target_include_directories(${TARGET} PRIVATE ${CMAKE_SOURCE_DIR})
target_link_libraries(${TARGET} PRIVATE common mtmd ${CMAKE_THREAD_LIBS_INIT})
if (LLAMA_SERVER_SSL)
find_package(OpenSSL REQUIRED)
target_link_libraries(${TARGET} PRIVATE OpenSSL::SSL OpenSSL::Crypto)
target_compile_definitions(${TARGET} PRIVATE CPPHTTPLIB_OPENSSL_SUPPORT)
endif()
if (WIN32)
TARGET_LINK_LIBRARIES(${TARGET} PRIVATE ws2_32)
endif()

View File

@@ -271,7 +271,7 @@ For more details, please refer to [multimodal documentation](../../docs/multimod
- Using `CMake`:
```bash
cmake -B build -DLLAMA_SERVER_SSL=ON
cmake -B build -DLLAMA_OPENSSL=ON
cmake --build build --config Release -t llama-server
```