Files
1a8c8795d64b04df96c28f29faac2d6e256f53bc
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)
|