summaryrefslogtreecommitdiff
path: root/llama.cpp/pocs/vdot/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'llama.cpp/pocs/vdot/CMakeLists.txt')
-rw-r--r--llama.cpp/pocs/vdot/CMakeLists.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/llama.cpp/pocs/vdot/CMakeLists.txt b/llama.cpp/pocs/vdot/CMakeLists.txt
new file mode 100644
index 0000000..6235aec
--- /dev/null
+++ b/llama.cpp/pocs/vdot/CMakeLists.txt
@@ -0,0 +1,9 @@
+set(TARGET llama-vdot)
+add_executable(${TARGET} vdot.cpp)
+target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
+target_compile_features(${TARGET} PRIVATE cxx_std_17)
+
+set(TARGET llama-q8dot)
+add_executable(${TARGET} q8dot.cpp)
+target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
+target_compile_features(${TARGET} PRIVATE cxx_std_17)