TdAI / llama.cpp /examples /embedding /CMakeLists.txt
tda45's picture
Upload folder using huggingface_hub (part 2)
c305fa5 verified
Raw
History Blame Contribute Delete
243 Bytes
set(TARGET llama-embedding)
add_executable(${TARGET} embedding.cpp)
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE llama-common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_17)