main/server: rename to llama / llama-server for consistency w/ homebrew

This commit is contained in:
Olivier Chafik 2024-06-06 15:28:27 +01:00
parent f83351f9a6
commit 849842916d
3 changed files with 6 additions and 4 deletions

View file

@ -1,4 +1,5 @@
set(TARGET main)
set_target_properties(${TARGET} PROPERTIES OUTPUT_NAME llama)
add_executable(${TARGET} main.cpp)
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})