1
0
mirror of https://github.com/ggerganov/llama.cpp.git synced 2025-01-21 17:19:23 +01:00
llama.cpp/examples/baby-llama/CMakeLists.txt
2023-07-19 10:01:11 +03:00

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