llama.cpp / examples /simple /CMakeLists.txt
dlxj
todo: 基于 CUDA 13.0 编译
2517be1
Raw
History Blame Contribute Delete
224 Bytes
set(TARGET llama-simple)
add_executable(${TARGET} simple.cpp)
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_17)