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