mirror of
https://github.com/RYDE-WORK/llama.cpp.git
synced 2026-01-20 13:43:26 +08:00
5 lines
196 B
CMake
5 lines
196 B
CMake
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)
|