mirror of
https://git.adityakumar.xyz/llama.cpp.git
synced 2025-02-22 23:50:01 +00:00
5 lines
233 B
CMake
5 lines
233 B
CMake
set(TARGET baby-llama)
|
|
add_executable(${TARGET} baby-llama.cpp)
|
|
install(TARGETS ${TARGET} RUNTIME)
|
|
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
|
|
target_compile_features(${TARGET} PRIVATE cxx_std_11)
|