mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-09-19 01:04:55 +02:00
39be55c97e
* vendor: move hash to vendor * group hashes into one single static lib
7 lines
242 B
CMake
7 lines
242 B
CMake
set(TARGET llama-gguf-hash)
|
|
add_executable(${TARGET} gguf-hash.cpp)
|
|
install(TARGETS ${TARGET} RUNTIME)
|
|
|
|
target_link_libraries(${TARGET} PRIVATE vendor-hash ggml ${CMAKE_THREAD_LIBS_INIT})
|
|
target_compile_features(${TARGET} PRIVATE cxx_std_17)
|