CMakeLists.txt 387 Bytes
Newer Older
xuxzh1's avatar
init  
xuxzh1 committed
1
set(TARGET llama-vdot)
mashun1's avatar
v1  
mashun1 committed
2
3
4
5
add_executable(${TARGET} vdot.cpp)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_11)

xuxzh1's avatar
init  
xuxzh1 committed
6
set(TARGET llama-q8dot)
mashun1's avatar
v1  
mashun1 committed
7
8
9
add_executable(${TARGET} q8dot.cpp)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_11)