mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-11-03 09:22:01 +00:00 
			
		
		
		
	* Added httplib support * Added readme for server example * fixed some bugs * Fix the build error on Macbook * changed json11 to nlohmann-json * removed some whitespaces * remove trailing whitespace * added support custom prompts and more functions * some corrections and added as cmake option
		
			
				
	
	
		
			9 lines
		
	
	
		
			329 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			329 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
set(TARGET server)
 | 
						|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
 | 
						|
add_executable(${TARGET} server.cpp json.hpp httplib.h)
 | 
						|
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
 | 
						|
target_compile_features(${TARGET} PRIVATE cxx_std_11)
 | 
						|
if(TARGET BUILD_INFO)
 | 
						|
  add_dependencies(${TARGET} BUILD_INFO)
 | 
						|
endif()
 |