1
0
mirror of https://github.com/ggerganov/llama.cpp.git synced 2025-01-16 15:18:26 +01:00
llama.cpp/examples/simple/CMakeLists.txt
Diego Devesa c7499c557c
examples : do not use common library in simple example ()
* examples : do not use common library in simple example

* add command line parser, simplify code
2024-10-10 19:50:49 +02:00

6 lines
224 B
CMake

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_11)