Koboldcpp / examples /embedding /CMakeLists.txt
Illumotion's picture
Upload folder using huggingface_hub
69fb50e
raw
history blame
267 Bytes
set(TARGET embedding)
add_executable(${TARGET} embedding.cpp)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_11)
if(TARGET BUILD_INFO)
add_dependencies(${TARGET} BUILD_INFO)
endif()