Files
524907aa768a26cbf83d8e2eb30547e2ee1d1b1a
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)
|