mirror of
https://git.adityakumar.xyz/llama.cpp.git
synced 2025-02-23 16:00:02 +00:00
5 lines
186 B
CMake
5 lines
186 B
CMake
![]() |
set(TARGET vdot)
|
||
|
add_executable(${TARGET} vdot.cpp)
|
||
|
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
|
||
|
target_compile_features(${TARGET} PRIVATE cxx_std_11)
|