diff options
Diffstat (limited to 'llama.cpp/examples/batched/CMakeLists.txt')
| -rw-r--r-- | llama.cpp/examples/batched/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llama.cpp/examples/batched/CMakeLists.txt b/llama.cpp/examples/batched/CMakeLists.txt new file mode 100644 index 0000000..0d439f4 --- /dev/null +++ b/llama.cpp/examples/batched/CMakeLists.txt @@ -0,0 +1,5 @@ +set(TARGET llama-batched) +add_executable(${TARGET} batched.cpp) +install(TARGETS ${TARGET} RUNTIME) +target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT}) +target_compile_features(${TARGET} PRIVATE cxx_std_17) |
