llama.cpp/examples/embedding/CMakeLists.txt

5 lines
196 B
CMake
Raw Normal View History

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)