Files
48be797ffbd80b062f55778e09e97180eb25d2ab
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)
|