mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2025-02-05 16:10:42 +01:00
![Diego Devesa](/assets/img/avatar_default.png)
* examples : do not use common library in simple example * add command line parser, simplify code
6 lines
224 B
CMake
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)
|