mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-07-02 01:00:20 +00:00
17ca6ed540
Complete llama-pull tool with documentation Signed-off-by: Eric Curtin <eric.curtin@docker.com>
9 lines
264 B
CMake
9 lines
264 B
CMake
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()
|