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)
|