Files
llama.cpp/examples/gguf/CMakeLists.txt
T

6 lines
213 B
CMake
Raw Normal View History

set(TARGET gguf)
add_executable(${TARGET} gguf.cpp)
install(TARGETS ${TARGET} RUNTIME)
2023-12-21 23:07:58 +02:00
target_link_libraries(${TARGET} PRIVATE ggml ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_11)