mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-10-27 08:21:30 +00:00
Implement llama-pull tool
Complete llama-pull tool with documentation Signed-off-by: Eric Curtin <eric.curtin@docker.com>
This commit is contained in:
8
tools/pull/CMakeLists.txt
Normal file
8
tools/pull/CMakeLists.txt
Normal file
@@ -0,0 +1,8 @@
|
||||
set(TARGET llama-pull)
|
||||
add_executable(${TARGET} pull.cpp)
|
||||
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
|
||||
target_compile_features(${TARGET} PRIVATE cxx_std_17)
|
||||
|
||||
if(LLAMA_TOOLS_INSTALL)
|
||||
install(TARGETS ${TARGET} RUNTIME)
|
||||
endif()
|
||||
Reference in New Issue
Block a user