Files
95bd60a0a69f57e9a2ff1269667ea484a1a9bb40
6 lines
214 B
CMake
6 lines
214 B
CMake
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)
|