mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-07-19 17:17:40 +00:00
Files
dfd9fce6d65599bf33df43e616e85aa639bdae4c
5 lines
198 B
CMake
5 lines
198 B
CMake
set(TARGET baby-llama)
|
|||
add_executable(${TARGET} baby-llama.cpp)
|
|||
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
|
|||
target_compile_features(${TARGET} PRIVATE cxx_std_11)
|