mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-11-03 09:22:01 +00:00 
			
		
		
		
	* main: add --json-schema / -j * json: move json-schema-to-grammar to common lib * json: fix zig build
		
			
				
	
	
		
			24 lines
		
	
	
		
			824 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			824 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
set(TARGET server)
 | 
						|
option(LLAMA_SERVER_VERBOSE "Build verbose logging option for Server" ON)
 | 
						|
option(LLAMA_SERVER_SSL "Build SSL support for the server" OFF)
 | 
						|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
 | 
						|
add_executable(${TARGET}
 | 
						|
    server.cpp
 | 
						|
    utils.hpp
 | 
						|
    httplib.h
 | 
						|
)
 | 
						|
install(TARGETS ${TARGET} RUNTIME)
 | 
						|
target_compile_definitions(${TARGET} PRIVATE
 | 
						|
    SERVER_VERBOSE=$<BOOL:${LLAMA_SERVER_VERBOSE}>
 | 
						|
)
 | 
						|
target_link_libraries(${TARGET} PRIVATE common ${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()
 | 
						|
target_compile_features(${TARGET} PRIVATE cxx_std_11)
 |