Files
llama.cpp/tools/completion/CMakeLists.txt
T

9 lines
276 B
CMake
Raw Normal View History

2025-12-10 15:28:59 +01:00
set(TARGET llama-completion)
add_executable(${TARGET} completion.cpp)
2023-03-28 21:23:09 +03:00
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
2024-11-29 21:54:58 +01:00
target_compile_features(${TARGET} PRIVATE cxx_std_17)
if(LLAMA_TOOLS_INSTALL)
install(TARGETS ${TARGET} RUNTIME)
endif()