add gguf example cmake file

This commit is contained in:
xaedes 2023-08-28 01:46:53 +02:00
parent ca5b344fb1
commit 5d94997a09
No known key found for this signature in database
GPG key ID: 30030EDD817EA2B1

View file

@ -0,0 +1,5 @@
set(TARGET gguf)
add_executable(${TARGET} gguf.cpp)
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_11)