1
0
mirror of https://github.com/ggerganov/llama.cpp.git synced 2025-01-24 18:39:19 +01:00
llama.cpp/pocs/vdot/CMakeLists.txt

10 lines
375 B
CMake
Raw Normal View History

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)
set(TARGET q8dot)
add_executable(${TARGET} q8dot.cpp)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_11)